Skip to content

Commit 67e4707

Browse files
authored
Merge pull request #169 from tirkarthi/fix-assert
Use assertEqual instead of assertEquals for Python 3.11 compatibility.
2 parents 69d6ea5 + c6c61bf commit 67e4707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestWatchman(unittest.TestCase):
2020
def test_successful_management_command_outputs_nothing(self):
2121
out = StringIO()
2222
call_command('watchman', stdout=out)
23-
self.assertEquals('', out.getvalue())
23+
self.assertEqual('', out.getvalue())
2424

2525
def test_successful_management_command_outputs_check_status_with_verbosity_2(self):
2626
out = StringIO()

0 commit comments

Comments
 (0)