diff options
author | Olly Cope <olly@ollycope.com> | 2018-01-29 14:10:25 +0000 |
---|---|---|
committer | Olly Cope <olly@ollycope.com> | 2018-01-29 14:10:25 +0000 |
commit | 28f990ba757435be2fba1e00eb73c9b033923ee3 (patch) | |
tree | 4b873b11645036eb4f5b1d5f7a3548c5f060157f | |
parent | 5132136d9b24c60d117754c6afc24908b5d6555d (diff) | |
download | yoyo-28f990ba757435be2fba1e00eb73c9b033923ee3.tar.gz |
tests: fix for mysql not liking double quotes around table names
-rw-r--r-- | yoyo/tests/test_cli_script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yoyo/tests/test_cli_script.py b/yoyo/tests/test_cli_script.py index 8fc6457..81b47ad 100644 --- a/yoyo/tests/test_cli_script.py +++ b/yoyo/tests/test_cli_script.py @@ -232,7 +232,7 @@ class TestYoyoScript(TestInteractiveScript): t.join() # Exactly one instance of the migration script should have succeeded - cursor = backend.execute('SELECT COUNT(1) from "_yoyo_t"') + cursor = backend.execute('SELECT COUNT(1) from _yoyo_t') assert cursor.fetchone()[0] == 1 |