From ccbf1ead9a3ce66c55905357c7ec725ebe756843 Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Wed, 10 Apr 2024 13:24:18 -0500 Subject: [PATCH] fix test --- test/test_gather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_gather.py b/test/test_gather.py index 4acb998..3d61bcc 100644 --- a/test/test_gather.py +++ b/test/test_gather.py @@ -77,7 +77,7 @@ def test_auto_gather_single(): print("Constant data:") result = [row[0] for row in cur.description] print(result) - assert len(result) == 11 + assert len(result) == 12 db = make_wrapped_db(["log.sqlite"], mangle=True, interactive=False) cur = db.q("select $fifteen") @@ -142,7 +142,7 @@ def is_unique_filename(str: str): print("Constant data:") result = [row[0] for row in cur.description] print(result) - assert len(result) == 11 + assert len(result) == 12 # teardown test for f in filenames: