Skip to content

Commit

Permalink
Fix test, None instead of False
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaz committed Jun 20, 2021
1 parent 5293eb2 commit 575caae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_termgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ def test_horiz_rows_yields_correct_values():
rows.append(row)

assert rows == [
(183.32, 17, 1.0, None, "2007: ", " 183.32", False),
(231.23, 22, 1.0, None, "2008: ", " 231.23", False),
(16.43, 1, 1.0, None, "2009: ", " 16.43", False),
(50.21, 4, 1.0, None, "2010: ", " 50.21", False),
(508.97, 50, 1.0, None, "2011: ", " 508.97", False),
(212.05, 20, 1.0, None, "2012: ", " 212.05", False),
(1.0, 0, 1.0, None, "2014: ", " 1.00 ", False),
(183.32, 17, 1.0, None, "2007: ", " 183.32", None),
(231.23, 22, 1.0, None, "2008: ", " 231.23", None),
(16.43, 1, 1.0, None, "2009: ", " 16.43", None),
(50.21, 4, 1.0, None, "2010: ", " 50.21", None),
(508.97, 50, 1.0, None, "2011: ", " 508.97", None),
(212.05, 20, 1.0, None, "2012: ", " 212.05", None),
(1.0, 0, 1.0, None, "2014: ", " 1.00 ", None),
]


Expand Down

0 comments on commit 575caae

Please sign in to comment.