Skip to content

Commit

Permalink
Fix mistake in test
Browse files Browse the repository at this point in the history
  • Loading branch information
niekdejonge committed Nov 24, 2023
1 parent dcdf8ff commit 80652db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ def check_correct_results_csv_file(dataframe_found: pd.DataFrame,
def check_expected_headers(dataframe_found: pd.DataFrame,
expected_headers: List[str]):
found_headers = list(dataframe_found.columns)
assert len(found_headers) == len(found_headers)
assert len(found_headers) == len(expected_headers)
for i, header in enumerate(expected_headers):
assert header == found_headers[i]

0 comments on commit 80652db

Please sign in to comment.