Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Apr 10, 2024
1 parent a4ccb45 commit ccbf1ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit ccbf1ea

Please sign in to comment.