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 5f13053 commit 11b9c3fCopy full SHA for 11b9c3f
backend/test/test_run_crawl.py
@@ -487,9 +487,10 @@ def test_download_wacz_crawls_as_single_wacz(
487
if filename == "datapackage.json":
488
data = zip_file.read(filename).decode("utf-8")
489
datapackage = json.loads(data)
490
- assert len(datapackage["resources"]) == 1
+ assert len(datapackage["resources"]) >= 6
491
for resource in datapackage["resources"]:
492
- assert resource["name"] == resource["path"]
+ assert resource["name"]
493
+ assert resource["path"]
494
assert resource["hash"]
495
assert resource["bytes"]
496
0 commit comments