Skip to content

Commit

Permalink
PC-584: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samyou-softwire committed Jan 22, 2024
1 parent 86457e1 commit 07ece76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_csv():
text = csv_page.content.decode("utf-8")
lines = text.splitlines()
assert len(lines) == 2
assert len(lines[0].split(",")) == 32, len(lines[0].split(","))
assert len(lines[0].split(",")) == 33, len(lines[0].split(","))

rows = list(csv.DictReader(lines))
data = rows[0]
Expand Down

0 comments on commit 07ece76

Please sign in to comment.