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 87c694d commit 4b7a020Copy full SHA for 4b7a020
tests/integration/test_native_upload.py
@@ -433,7 +433,7 @@ def test_zipzip_file_upload(
433
434
# Arrange
435
files = [
436
- File(filepath="tests/fixtures/archive.zip"),
+ File(filepath="tests/fixtures/archive.zip.zip"),
437
]
438
439
# Act
@@ -452,14 +452,10 @@ def test_zipzip_file_upload(
452
api_token=API_TOKEN,
453
)
454
455
- assert len(files) == 5, f"Expected 5 files, got {len(files)}"
+ assert len(files) == 1, f"Expected 1 file, got {len(files)}"
456
457
expected_files = [
458
- "hallo.tab",
459
- "hallo2.tab",
460
- "hallo3.tab",
461
- "hallo4.tab",
462
- "hallo5.tab",
+ "Archiv.zip", # codespell:ignore
463
464
465
assert sorted([file["label"] for file in files]) == sorted(expected_files)
0 commit comments