From 514c400017ee6d8e4cbd2f0376259e5402d4abf0 Mon Sep 17 00:00:00 2001 From: User Date: Tue, 19 Aug 2025 08:49:44 +0200 Subject: [PATCH] Fix AndroidQF file count test --- tests/common/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/test_utils.py b/tests/common/test_utils.py index d1058e5..4dbe5c0 100644 --- a/tests/common/test_utils.py +++ b/tests/common/test_utils.py @@ -62,7 +62,7 @@ class TestHashes: def test_hash_from_folder(self): path = os.path.join(get_artifact_folder(), "androidqf") hashes = list(generate_hashes_from_path(path, logging)) - assert len(hashes) == 7 + assert len(hashes) == 8 # Sort the files to have reliable order for tests. hashes = sorted(hashes, key=lambda x: x["file_path"]) assert hashes[0]["file_path"] == os.path.join(path, "backup.ab")