Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
  • Loading branch information
ArzelaAscoIi committed Apr 30, 2024
1 parent 1b744a7 commit e9a0ad0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/service/test_integration_files_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ async def test_direct_upload_path_multiple_file_types(
timeout_s=timeout,
desired_file_types=SUPPORTED_TYPE_SUFFIXES,
)
assert result.total_files == 9
assert result.successful_upload_count == 9
assert result.total_files == 10
assert result.successful_upload_count == 10
assert result.failed_upload_count == 0
assert len(result.failed) == 0

Expand Down Expand Up @@ -160,8 +160,8 @@ async def test_async_upload_multiple_file_types(
timeout_s=timeout,
desired_file_types=SUPPORTED_TYPE_SUFFIXES,
)
assert result.total_files == 20
assert result.successful_upload_count == 20
assert result.total_files == 22
assert result.successful_upload_count == 22
assert result.failed_upload_count == 0
assert len(result.failed) == 0

Expand Down

0 comments on commit e9a0ad0

Please sign in to comment.