Skip to content

Commit

Permalink
fix typo in pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Feb 24, 2025
1 parent 8733347 commit 5d04570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/text/test_text_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def test_normalize_characters():
)

normalizer = CharacterNormalizer(False)
actual = normalizer(strings.str)
actual = normalizer.normalize(strings.str)
assert type(expected) is type(actual)
assert_eq(expected, actual)

Expand Down

0 comments on commit 5d04570

Please sign in to comment.