Skip to content

Commit 17a896d

Browse files
fix test
1 parent 9bfad29 commit 17a896d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

services/web/server/tests/unit/with_dbs/01/storage/test_storage.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ def side_effect(*args, **kwargs):
162162
@pytest.mark.parametrize(
163163
"backend_result_or_exception",
164164
[
165-
AsyncJobGet(job_id=AsyncJobId(f"{_faker.uuid4()}")),
165+
AsyncJobGet(
166+
job_id=AsyncJobId(f"{_faker.uuid4()}"), job_name="compute_path_size"
167+
),
166168
],
167169
ids=lambda x: type(x).__name__,
168170
)
@@ -204,7 +206,9 @@ async def test_compute_path_size(
204206
@pytest.mark.parametrize(
205207
"backend_result_or_exception",
206208
[
207-
AsyncJobGet(job_id=AsyncJobId(f"{_faker.uuid4()}")),
209+
AsyncJobGet(
210+
job_id=AsyncJobId(f"{_faker.uuid4()}"), job_name="batch_delete_paths"
211+
),
208212
],
209213
ids=lambda x: type(x).__name__,
210214
)

0 commit comments

Comments
 (0)