From 24a250f0eef5275fece33d8f658a9d1f3cf90298 Mon Sep 17 00:00:00 2001 From: benoit74 Date: Mon, 30 Oct 2023 11:56:06 +0100 Subject: [PATCH] Fix number of items for warc2zim since move to Brave changed this --- test/integration.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration.py b/test/integration.py index 4cfd0d0..ca5a2dc 100644 --- a/test/integration.py +++ b/test/integration.py @@ -59,12 +59,12 @@ def test_stats_output(): } with open("/output/warc2zim.json") as fh: assert json.loads(fh.read()) == { - "written": 9, - "total": 9, + "written": 10, + "total": 10, } with open("/output/stats.json") as fh: assert json.loads(fh.read()) == { - "done": 9, - "total": 9, + "done": 10, + "total": 10, "limit": {"max": 0, "hit": False}, }