We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e55003 commit 2d2e049Copy full SHA for 2d2e049
tiled/_tests/test_sync.py
@@ -24,8 +24,7 @@
24
def client_factory(readable_storage=None):
25
with tempfile.TemporaryDirectory() as tempdir:
26
catalog = in_memory(
27
- writable_storage=str(tempdir),
28
- readable_storage=readable_storage,
+ writable_storage=str(tempdir), readable_storage=readable_storage
29
)
30
app = build_app(catalog)
31
with Context.from_app(app) as context:
tiled/_tests/test_validation.py
@@ -104,9 +104,7 @@ def test_unknown_spec_strict(tmpdir):
104
{
105
"tree": "tiled.catalog:in_memory",
106
"path": "/",
107
- "args": {
108
- "writable_storage": str(tmpdir),
109
- },
+ "args": {"writable_storage": str(tmpdir)},
110
},
111
],
112
"specs": [
0 commit comments