Skip to content

Commit

Permalink
Fix Jenkins test_strings.py error (#2129)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-joshi authored Aug 20, 2024
1 parent a50435a commit 695cd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integ/modin/strings/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def test_index_not_found_raises():
@sql_count_checker(query_count=0)
def test_index_raises_not_implemented_error(method):
obj = pd.Series([], dtype=object)
msg = f"{method} is not yet implemented for Series.str"
msg = f"Snowpark pandas does not yet support the method Series.str.{method}"

with pytest.raises(NotImplementedError, match=msg):
getattr(obj.str, method)("sub")
Expand Down

0 comments on commit 695cd14

Please sign in to comment.