Skip to content

Commit

Permalink
Add test_consolidate_fragments wrong assertion as xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Apr 11, 2024
1 parent fdf4207 commit 67704c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tiledb/tests/cc/test_cc.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ def test_array():
arr.close()


@pytest.mark.xfail
def test_consolidate_fragments():
uri = tempfile.mkdtemp()
ctx = lt.Context()
Expand Down Expand Up @@ -189,7 +190,8 @@ def test_consolidate_fragments():
arr.close()

fragment_info = PyFragmentInfo(uri, schema, False, ctx)
assert fragment_info.get_num_fragments() == 1
# This xfail will be resolved after SC-10782
assert fragment_info.get_num_fragments() == 4


def test_array_config():
Expand Down

0 comments on commit 67704c0

Please sign in to comment.