Skip to content

Commit

Permalink
test(pyspark): update note that pyspark ain't gonna happen
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and cpcloud committed Sep 6, 2024
1 parent 413df3b commit 8f8843e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ibis/backends/tests/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -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"],
Expand Down

0 comments on commit 8f8843e

Please sign in to comment.