Skip to content

Commit

Permalink
microfix: assertEqual >> failUnlessEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr Plesovskih committed Dec 2, 2013
1 parent c7a826e commit f882fd3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,7 +107,7 @@ def test_handled_events_filter_true(self):
def check(_):
self.failUnlessEqual(len(self.changes_added), 1)
c = self.changes_added[0]
self.assertEquals(c["category"], "change-merged")
self.failUnlessEqual(c["category"], "change-merged")
d.addCallback(check)
return d

Expand Down

0 comments on commit f882fd3

Please sign in to comment.