summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Cope <olly@ollycope.com>2018-08-04 18:58:57 +0000
committerOlly Cope <olly@ollycope.com>2018-08-04 18:58:57 +0000
commite2ece36fd7ad6eca492fab0e6c6311115e61d162 (patch)
tree66eab956d449f40f2e18e589202b5cc14f203688
parent81073037836f69b3b16cb3a5a6c9c27d9f0e01a6 (diff)
downloadyoyo-e2ece36fd7ad6eca492fab0e6c6311115e61d162.tar.gz
Fix inconsistent indentation
-rw-r--r--yoyo/tests/conftest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/yoyo/tests/conftest.py b/yoyo/tests/conftest.py
index a5848c4..2f4bb17 100644
--- a/yoyo/tests/conftest.py
+++ b/yoyo/tests/conftest.py
@@ -28,10 +28,10 @@ def backend(request):
def drop_yoyo_tables(backend):
- for table in backend.list_tables():
- if table.startswith('yoyo') or table.startswith('_yoyo'):
- with backend.transaction():
- backend.execute("DROP TABLE {}".format(table))
+ for table in backend.list_tables():
+ if table.startswith('yoyo') or table.startswith('_yoyo'):
+ with backend.transaction():
+ backend.execute("DROP TABLE {}".format(table))
def pytest_configure(config):