Skip to content

Commit e1a2e8b

Browse files
committed
PR feedback: add human readble ids
1 parent 76bbbcd commit e1a2e8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_frozenlist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def test_deepcopy_multiple_references(self) -> None:
387387
assert len(copied[1]) == 3 # Should see the change
388388
assert len(shared) == 2 # Original unchanged
389389

390-
@pytest.mark.parametrize("freeze", [True, False])
390+
@pytest.mark.parametrize("freeze", [True, False], ids=["frozen", "not frozen"])
391391
def test_picklability(self, freeze: bool) -> None:
392392
# Test that the list can be pickled and unpickled successfully
393393
orig = self.FrozenList([1, 2, 3])

0 commit comments

Comments
 (0)