We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd7ada3 + 33af68c commit c503747Copy full SHA for c503747
django_prometheus/tests/end2end/testapp/test_migrations.py
@@ -30,7 +30,7 @@ def test_counters(self):
30
executor.migration_plan.return_value = set()
31
executor.loader.applied_migrations = set(["a", "b", "c"])
32
ExportMigrationsForDatabase("fakedb1", executor)
33
- self.assertEquals(executor.migration_plan.call_count, 1)
+ self.assertEqual(executor.migration_plan.call_count, 1)
34
executor.migration_plan = MagicMock()
35
executor.migration_plan.return_value = set(["a"])
36
executor.loader.applied_migrations = set(["b", "c"])
0 commit comments