Skip to content

Commit 1244c2b

Browse files
author
Richard Jones
committed
Fixed an oops
1 parent 9441326 commit 1244c2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_db.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def testChanges(self):
3838
props = self.db.issue.getprops()
3939
keys = props.keys()
4040
keys.sort()
41-
self.assertEqual(keys, ['title', 'status', 'user'], 'wrong prop list')
41+
self.assertEqual(keys, ['fixer', 'status', 'title'], 'wrong prop list')
4242
self.db.issue.set('5', status=2)
4343
self.db.issue.get('5', "status")
4444
self.db.status.get('2', "name")
@@ -50,6 +50,7 @@ def testChanges(self):
5050

5151
def testExceptions(self):
5252
# this tests the exceptions that should be raised
53+
pass
5354

5455
def suite():
5556
return unittest.makeSuite(DBTestCase, 'test')

0 commit comments

Comments
 (0)