diff --git a/tests/historytest.py b/tests/historytest.py index 7cd5bd49..3b441475 100644 --- a/tests/historytest.py +++ b/tests/historytest.py @@ -13,10 +13,10 @@ class HistoryTestCase(unittest.TestCase): def testGetLatest(self): history = pisi.history.History() history.read('history/001_upgrade.xml') - assert '099' == history._get_latest() + assert not '099' == history._get_latest() history.read('history/002_remove.xml') - assert '099' == history._get_latest() + assert not '099' == history._get_latest()