Skip to content

Commit a4f2f08

Browse files
tirkarthifjsj
authored andcommitted
Use assertNotEqual instead of assertNotEquals for Python 3.11 compatibility.
1 parent bf03283 commit a4f2f08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/app/tests/test_webpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_code_spliting(self):
137137

138138
chunks = assets['chunks']
139139
self.assertIn('main', chunks)
140-
self.assertEquals(len(chunks), 1)
140+
self.assertEqual(len(chunks), 1)
141141

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

0 commit comments

Comments
 (0)