Skip to content

Commit

Permalink
test: fix failing test, updated error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Osneil Drakes authored and Osneil Drakes committed Sep 9, 2024
1 parent 8fb8dd0 commit 5165c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit_tests/parsers/helpers/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
}
),
set(["fruits", "vegetables"]),
"Required fields '{'vegetables'}' not present in df columns '{'fruits'}'",
"Required fields ['vegetables'] not present in df columns ['fruits']",
),
(
pd.DataFrame(),
set(["cars"]),
"Required fields '{'cars'}' not present in df columns '{}'",
"Required fields ['cars'] not present in df columns []",
),
],
)
Expand Down

0 comments on commit 5165c3d

Please sign in to comment.