Skip to content

Commit 1aff762

Browse files
committed
Fix comment
1 parent 4be57ef commit 1aff762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_marshal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def test_deterministic_sets(self):
351351
for kind in ("set", "frozenset"):
352352
script = f"import marshal; print(marshal.dumps({kind}({elements})))"
353353
with self.subTest(kind):
354-
# {nan, b"b", "x", b'a', b'c', 'y', 'z'}
354+
# {nan, b'b', 'x', b'a', b'c', 'y', 'z'}
355355
_, a, _ = assert_python_ok("-c", script, PYTHONHASHSEED="0")
356356
# {nan, 'x', b'a', 'z', b'b', 'y', b'c'}
357357
_, b, _ = assert_python_ok("-c", script, PYTHONHASHSEED="1")

0 commit comments

Comments
 (0)