Skip to content

Commit

Permalink
KeywordBearTest: Use assertEqual
Browse files Browse the repository at this point in the history
Use assertEqual instead of assertEquals.

Closes #2049
  • Loading branch information
urohit011 authored and gitmate-bot committed Oct 1, 2017
1 parent d658321 commit c4b874e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/general/KeywordBearTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_keyword_outside_of_comment(self):
text = ['todo = 123\n']
with execute_bear(self.uut, filename='F', file=text,
dependency_results=self.dep_results) as result:
self.assertEquals(result[0].diffs, {})
self.assertEqual(result[0].diffs, {})

def test_keyword_between_code(self):
self.section.append(Setting('language', 'c'))
Expand Down

0 comments on commit c4b874e

Please sign in to comment.