Skip to content

Commit

Permalink
xfail test_decode_surrogate_characters() on Windows PyPy.
Browse files Browse the repository at this point in the history
This feature needs fixing. See #552.
  • Loading branch information
bwoodsend committed Jun 17, 2022
1 parent fb6251e commit 53c0864
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_ujson.py
Expand Up @@ -515,6 +515,10 @@ def test_encode_surrogate_characters():
assert ujson.dumps({"\ud800": "\udfff"}, ensure_ascii=False, sort_keys=True) == out2


@pytest.mark.xfail(
hasattr(sys, "pypy_version_info") and os.name == "nt",
reason="This feature needs fixing! See #552",
)
@pytest.mark.parametrize(
"test_input, expected",
[
Expand Down

0 comments on commit 53c0864

Please sign in to comment.