Skip to content

Commit

Permalink
Tweak comments on parameterized tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Sep 1, 2023
1 parent b9759ee commit 51c9497
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -1352,12 +1352,12 @@ def teardown_method(self):
@pytest.mark.parametrize(
"maxsize, sizeof_voidp, expected",
[
# CPython, PyPy, pyston 64bit
# 64-bit
(9223372036854775807, 8, False),
# GraalPy, IronPython, Jython 64bit
(2147483647, 8, False),
# CPython, PyPy, IronPython, Jython, pyodide 32bit
# 32-bit
(2147483647, 4, True),
# 64-bit w/ 32-bit sys.maxsize: GraalPy, IronPython, Jython
(2147483647, 8, False),
],
)
def test_32bit_interpreter(self, maxsize, sizeof_voidp, expected, monkeypatch):
Expand Down

0 comments on commit 51c9497

Please sign in to comment.