Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yardee committed Nov 3, 2023
1 parent 742ee6e commit 34dff02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@pytest.mark.parametrize(
"text_input,expected",
[("", True), ("nan", True), (None, True), (" ", True), ("a", False), ("1", False)],
[("", True), ("nan", True), (None, True), (" ", True), ("a", False), (0, False), ("1", False)],
)
def test_is_empty_given_empty_value_returns_true(text_input: str | None, expected: bool):
assert Normalizer.is_empty(text_input) is expected

0 comments on commit 34dff02

Please sign in to comment.