Skip to content

Commit

Permalink
test(flink): revise mark for map dict construction
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and gforsyth committed Dec 2, 2023
1 parent d223111 commit 72bec75
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ibis/backends/tests/test_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,10 @@ def test_literal_map_get_broadcast(backend, alltypes, df):
param(["a", "b"], ["1", "2"], id="int"),
],
)
@pytest.mark.notimpl(
["flink"], raises=AssertionError, reason="WIP; got [('a', 1), ('b', 2)] instead"
@pytest.mark.notyet(
["flink"],
raises=AssertionError,
reason="got list of tuples instead; requires PyFlink compatibility with PyArrow 13",
)
def test_map_construct_dict(con, keys, values):
expr = ibis.map(keys, values)
Expand Down

0 comments on commit 72bec75

Please sign in to comment.