mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-19 22:54:05 -04:00
Fix incorrect return value in tests. (#11359)
This commit is contained in:
parent
0caf20883c
commit
319dcb955e
2 changed files with 2 additions and 1 deletions
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue