Commit 8faaf03b authored by Alex Gaynor's avatar Alex Gaynor
Browse files

Fixed some flake8 issues

parent 15f82c70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -130,13 +130,13 @@ class ExecutorTests(MigrationTestBase):
        # Erase all the fake records
        executor.recorder.flush()


    @override_settings(MIGRATION_MODULES={"migrations": "migrations.test_migrations"})
    def test_soft_apply(self):
        """
        Tests detection of initial migrations already having been applied.
        """
        state = {"faked": None}

        def fake_storer(phase, migration, fake):
            state["faked"] = fake
        executor = MigrationExecutor(connection, progress_callback=fake_storer)