Skip to content

Commit fda16c7

Browse files
committed
assertEquals is deprecated
1 parent 4698f09 commit fda16c7

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
@@ -61,7 +61,7 @@ def test_simple_and_css_extract(self):
6161

6262
chunks = assets['chunks']
6363
self.assertIn('main', chunks)
64-
self.assertEquals(len(chunks), 1)
64+
self.assertEqual(len(chunks), 1)
6565

6666
main = chunks['main']
6767
self.assertEqual(main[0]['path'], os.path.join(settings.BASE_DIR, 'assets/bundles/main.js'))

0 commit comments

Comments
 (0)