summary refs log tree commit diff
path: root/tests/storage/test_rollback_worker.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/storage/test_rollback_worker.py')
-rw-r--r--tests/storage/test_rollback_worker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_rollback_worker.py b/tests/storage/test_rollback_worker.py

index 0ce0892165..cfc8098af6 100644 --- a/tests/storage/test_rollback_worker.py +++ b/tests/storage/test_rollback_worker.py
@@ -33,7 +33,7 @@ def fake_listdir(filepath: str) -> List[str]: A list of files and folders in the directory. """ if filepath.endswith("full_schemas"): - return [SCHEMA_VERSION] + return [str(SCHEMA_VERSION)] return ["99_add_unicorn_to_database.sql"]