Mercurial > p > roundup > code
diff tests/test_db.py @ 73:e1ce700bd7b9
Fixed an oops
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Jul 2001 03:40:19 +0000 |
| parents | 5147b4c51fd5 |
| children | f1cffcad4903 |
line wrap: on
line diff
--- a/tests/test_db.py Wed Jul 25 03:39:47 2001 +0000 +++ b/tests/test_db.py Wed Jul 25 03:40:19 2001 +0000 @@ -38,7 +38,7 @@ 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 @@ def testExceptions(self): # this tests the exceptions that should be raised + pass def suite(): return unittest.makeSuite(DBTestCase, 'test')
