summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-23 11:07:52 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-23 11:07:52 -0600
commita8a5c31966ff157b8d720fb0c8fd2df0191e2e61 (patch)
treeca5ffd1835792b0f0b4b7d4ad70fb425a1048d1a
parent4f7b7ef6837ee8e385785b164534fd5bc6c38e9f (diff)
Two whitespace changes to appease flake8
-rw-r--r--tests/migrations/test_operations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py
index c755ff0305..1390638270 100644
--- a/tests/migrations/test_operations.py
+++ b/tests/migrations/test_operations.py
@@ -485,6 +485,7 @@ class OperationTests(MigrationTestBase):
Pony = models.get_model("test_runpython", "Pony")
Pony.objects.create(pink=1, weight=3.55)
Pony.objects.create(weight=5)
+
def inner_method_reverse(models, schema_editor):
Pony = models.get_model("test_runpython", "Pony")
Pony.objects.filter(pink=1, weight=3.55).delete()
@@ -517,7 +518,6 @@ class OperationTests(MigrationTestBase):
no_reverse_operation.database_backwards("test_runpython", editor, new_state, project_state)
-
class MigrateNothingRouter(object):
"""
A router that sends all writes to the other database.