Skip to content

Commit

Permalink
Attempt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
nineteendo committed Sep 18, 2024
1 parent 5a6bc7b commit 6334e2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/jsonyx/test/test_load_query_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_int(s: str) -> None:


@pytest.mark.skipif(
hasattr(sys, "get_int_max_str_digits"),
not hasattr(sys, "get_int_max_str_digits"),
reason="requires integer string conversion length limit",
)
def test_too_big_int() -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/jsonyx/test/test_loads.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_int(json: ModuleType, s: str) -> None:


@pytest.mark.skipif(
hasattr(sys, "get_int_max_str_digits"),
not hasattr(sys, "get_int_max_str_digits"),
reason="requires integer string conversion length limit",
)
def test_too_big_int(json: ModuleType) -> None:
Expand Down

0 comments on commit 6334e2c

Please sign in to comment.