Skip to content

Commit 36f6ac1

Browse files
committed
fixed assertion method from assertEquals to assertEqual in test_exclude_pattern
1 parent 8c37513 commit 36f6ac1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/main_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_exclude_pattern(self):
8484
self.factory.exclude("*")
8585
subs = self.factory.get_all(["foo"], preprocessor)
8686
subs = {sub for sub in subs if sub.files}
87-
self.assertEquals(subs, set())
87+
self.assertEqual(subs, set())
8888

8989
def test_include_pattern(self):
9090
preprocessor = lambda tokens : tokens

0 commit comments

Comments
 (0)