We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48266e commit 06eedbbCopy full SHA for 06eedbb
1 file changed
tests/test_units.py
@@ -43,15 +43,15 @@ def test_parse_line_intermediate_rank():
43
44
45
def test_parse_line_too_few_columns():
46
- assert _parse_line("50.00\t500000\n") is None
+ assert _parse_line("50.00\t500000\n") == []
47
48
49
def test_parse_line_non_numeric_pct():
50
- assert _parse_line("not_a_float\t500000\t0\tP\t1224\tBacteria\n") is None
+ assert _parse_line("not_a_float\t500000\t0\tP\t1224\tBacteria\n") == []
51
52
53
def test_parse_line_non_numeric_reads():
54
- assert _parse_line("50.00\tnot_int\t0\tP\t1224\tBacteria\n") is None
+ assert _parse_line("50.00\tnot_int\t0\tP\t1224\tBacteria\n") == []
55
56
57
# ---------------------------------------------------------------------------
0 commit comments