Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
The `test_parse_args` test is broken because it doesn't contain any
assert statements.
  • Loading branch information
iaindillingham committed Apr 6, 2022
1 parent 68f14e1 commit 1c5f0c4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_deciles_charts.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pathlib

import pandas
import pytest
from pandas import testing
Expand Down Expand Up @@ -101,5 +103,5 @@ def test_parse_args(tmp_path, monkeypatch):
args = deciles_charts.parse_args()

# assert
args.input_dir == "input"
args.output_dir == "output"
assert args.input_dir == pathlib.Path("input")
assert args.output_dir == pathlib.Path("output")

0 comments on commit 1c5f0c4

Please sign in to comment.