From 462dfaa440cebcc411cc49d4bb91c8bfd9acdf4b Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 25 Jul 2001 03:40:19 +0000 Subject: [PATCH] Fixed an oops git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@78 57a73879-2fb5-44c3-a270-3262357dd7e2 --- tests/test_db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_db.py b/tests/test_db.py index 5d5511f..f303add 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -38,7 +38,7 @@ class DBTestCase(unittest.TestCase): props = self.db.issue.getprops() keys = props.keys() keys.sort() - self.assertEqual(keys, ['title', 'status', 'user'], 'wrong prop list') + self.assertEqual(keys, ['fixer', 'status', 'title'], 'wrong prop list') self.db.issue.set('5', status=2) self.db.issue.get('5', "status") self.db.status.get('2', "name") @@ -50,6 +50,7 @@ class DBTestCase(unittest.TestCase): def testExceptions(self): # this tests the exceptions that should be raised + pass def suite(): return unittest.makeSuite(DBTestCase, 'test') -- 2.30.2