Skip to content

Commit 85a5834

Browse files
committed
update tests for chunks - they exist
1 parent cac45a8 commit 85a5834

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/mergin/tests/test_public_api_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def test_create_version(client, data, expected, err_code):
378378
if expected == 201:
379379
assert response.json["version"] == "v2"
380380
assert project.latest_version == 2
381-
assert all(not os.path.exists(chunk) for chunk in chunks)
381+
assert all(os.path.exists(chunk) for chunk in chunks)
382382
else:
383383
assert project.latest_version == 1
384384
if err_code:

0 commit comments

Comments
 (0)