From 8f8843e982196672cf3035dc8f85a7de5b4a645b Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Thu, 5 Sep 2024 14:13:31 -0400 Subject: [PATCH] test(pyspark): update note that pyspark ain't gonna happen --- ibis/backends/tests/test_string.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ibis/backends/tests/test_string.py b/ibis/backends/tests/test_string.py index 915a9f6f1ede..b9d38b18a545 100644 --- a/ibis/backends/tests/test_string.py +++ b/ibis/backends/tests/test_string.py @@ -1264,10 +1264,10 @@ def string_temp_table(backend, con): lambda t: t.str.lstrip(), id="lstrip", marks=[ - pytest.mark.notimpl( + pytest.mark.notyet( ["pyspark"], raises=AssertionError, - reason="doesn't strip newline or tabs", + reason="Spark SQL LTRIM doesn't accept characters to trim", ), pytest.mark.notimpl( ["bigquery", "snowflake"], @@ -1281,10 +1281,10 @@ def string_temp_table(backend, con): lambda t: t.str.rstrip(), id="rstrip", marks=[ - pytest.mark.notimpl( + pytest.mark.notyet( ["pyspark"], raises=AssertionError, - reason="doesn't strip newline or tabs", + reason="Spark SQL RTRIM doesn't accept characters to trim", ), pytest.mark.notimpl( ["bigquery", "snowflake"],