Skip to content

Commit

Permalink
Use assertNotEqual instead of assertNotEquals for Python 3.11 compati…
Browse files Browse the repository at this point in the history
…bility.
  • Loading branch information
tirkarthi authored and fjsj committed Oct 14, 2021
1 parent bf03283 commit a4f2f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/app/tests/test_webpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_code_spliting(self):

chunks = assets['chunks']
self.assertIn('main', chunks)
self.assertEquals(len(chunks), 1)
self.assertEqual(len(chunks), 1)

files = assets['assets']
self.assertEqual(files['main.js']['path'], os.path.join(
Expand Down

0 comments on commit a4f2f08

Please sign in to comment.