fix test in py3
This commit is contained in:
parent
9e7448a049
commit
6cf6bf25f2
@ -23,7 +23,7 @@ Bug fixes:
|
|||||||
[iham]
|
[iham]
|
||||||
|
|
||||||
- Fix commenting and tests in python 3.
|
- Fix commenting and tests in python 3.
|
||||||
[pbauer]
|
[pbauer, jensens]
|
||||||
|
|
||||||
3.0.6 (2018-06-18)
|
3.0.6 (2018-06-18)
|
||||||
------------------
|
------------------
|
||||||
|
@ -204,7 +204,10 @@ class ConversationCatalogTest(unittest.TestCase):
|
|||||||
)
|
)
|
||||||
doc1_brain = brains[0]
|
doc1_brain = brains[0]
|
||||||
|
|
||||||
self.assertEqual(doc1_brain.commentators, ('Jim', 'Emma'))
|
self.assertEqual(
|
||||||
|
sorted(doc1_brain.commentators),
|
||||||
|
sorted(('Jim', 'Emma')),
|
||||||
|
)
|
||||||
|
|
||||||
# remove one comments
|
# remove one comments
|
||||||
del self.conversation[new_comment2_id]
|
del self.conversation[new_comment2_id]
|
||||||
|
Loading…
Reference in New Issue
Block a user