From 695cd140b458c7d17f9428bc04bbe0804c8c777d Mon Sep 17 00:00:00 2001 From: Jonathan Shi <149419494+sfc-gh-joshi@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:43:26 -0700 Subject: [PATCH] Fix Jenkins test_strings.py error (#2129) --- tests/integ/modin/strings/test_strings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integ/modin/strings/test_strings.py b/tests/integ/modin/strings/test_strings.py index cd2edb4f85d..462aa644f0c 100644 --- a/tests/integ/modin/strings/test_strings.py +++ b/tests/integ/modin/strings/test_strings.py @@ -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")