Compare commits

..

No commits in common. "3c38a5e55e29d6e500087dd0f5ddbeea5dd6cb8e" and "2ff2ee29ed3b8ed22e21f0e1c2a1d5d94d2d0e1f" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -44,7 +44,7 @@ dependencies = [
[project.optional-dependencies]
dev = [
"hatch==1.14.0",
"ruff==0.9.2",
"ruff==0.9.1",
"djlint==1.36.4",
"mkdocs==1.6.1",
"mkdocs-material==9.5.49",
@ -61,7 +61,7 @@ test = [
"pytest-playwright==0.6.2",
"pytest-rerunfailures==15.0",
"pytest-xdist>=3.5.0,<4",
"moto[s3]==5.0.27"
"moto[s3]==5.0.25"
]
docker = [
"uwsgi==2.0.28",

View file

@ -289,5 +289,5 @@ def test_should_remove_all_versions_on_delete(map, settings):
datalayer.geojson.storage.save(root / f"{path}.gz", ContentFile("{}"))
assert len(datalayer.geojson.storage.listdir(root)[1]) == 10 + before
datalayer.delete()
found = set(datalayer.geojson.storage.listdir(root)[1])
assert found == {other, f"{other}.gz"}
found = datalayer.geojson.storage.listdir(root)[1]
assert found == [other, f"{other}.gz"]