From 77a2dc0c364e839b3a2f7860a01a6bc3069cff33 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 20 Sep 2005 05:48:09 +0000 Subject: [PATCH] --- test/historyarray.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/historyarray.py b/test/historyarray.py index bd5c81ad9b..9fc270432b 100644 --- a/test/historyarray.py +++ b/test/historyarray.py @@ -12,7 +12,7 @@ class HistoryArrayTest(PersistTest): def testremove(self): a = util.HistoryArraySet() a.append('hi') - a.clear_history() + a.commit() self.assert_(a == ['hi']) self.assert_(a.added_items() == []) a.remove('hi') @@ -30,7 +30,7 @@ class HistoryArrayTest(PersistTest): def testaddedremoved(self): a = util.HistoryArraySet() a.append('hi') - a.clear_history() + a.commit() a.remove('hi') self.assert_(a.deleted_items() == ['hi']) a.append('hi') @@ -43,7 +43,7 @@ class HistoryArrayTest(PersistTest): a.append('hi') a.append('there') a.append('yo') - a.clear_history() + a.commit() before = repr(a.data) print repr(a.data) a.remove('there') -- 2.47.2