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 912197d commit fbb8ff6Copy full SHA for fbb8ff6
services/web/server/tests/unit/with_dbs/01/test_storage.py
@@ -494,7 +494,7 @@ async def test_storage_list_filter(
494
@pytest.fixture
495
def file_id(faker: Faker) -> StorageFileID:
496
return TypeAdapter(StorageFileID).validate_python(
497
- f"{faker.uuid4()}/{faker.uuid4()}/{faker.file_name()} with space.dat"
+ f"{faker.uuid4()}/{faker.uuid4()}/{faker.file_name()} with spaces.dat"
498
)
499
500
@@ -530,4 +530,4 @@ async def test_upload_file(
530
531
data, error = await assert_status(resp, status.HTTP_204_NO_CONTENT)
532
assert not error
533
- assert data
+ assert not data
0 commit comments