Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Nov 7, 2024
1 parent 2d3b36f commit 1207ba3
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions python/cudf_polars/tests/test_mapfunction.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,3 @@ def test_unpivot_defaults():
)
q = df.unpivot(index="d")
assert_gpu_result_equal(q)


def test_unpivot_unsupported_cast_raises():
df = pl.LazyFrame(
{
"a": ["x", "y", "z"],
"b": pl.Series([1, 3, 5], dtype=pl.Int16),
}
)

q = df.unpivot(["a", "b"])

assert_ir_translation_raises(q, NotImplementedError)

0 comments on commit 1207ba3

Please sign in to comment.