Skip to content

Commit

Permalink
fix: adjust total uploaded files for direct upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ArzelaAscoIi committed Nov 27, 2023
1 parent 378279c commit c4d8a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/service/test_integration_files_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ async def test_direct_upload(self, integration_config: CommonConfig, workspace_n
write_mode=WriteMode.KEEP,
timeout_s=timeout,
)
assert result.total_files == 20
assert result.successful_upload_count == 20
assert result.total_files == 10
assert result.successful_upload_count == 10
assert result.failed_upload_count == 0
assert len(result.failed) == 0

Expand Down

0 comments on commit c4d8a0a

Please sign in to comment.