Code

Fixed an oops
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Jul 2001 03:40:19 +0000 (03:40 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Jul 2001 03:40:19 +0000 (03:40 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@78 57a73879-2fb5-44c3-a270-3262357dd7e2

tests/test_db.py

index 5d5511f7d58621740c02f9e107b933408cea187e..f303add19f4f251300b45b0688aceb26fe9cf4ea 100644 (file)
@@ -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')