(self)
| 617 | ) |
| 618 | |
| 619 | def test_idmaker_with_ids(self) -> None: |
| 620 | result = idmaker( |
| 621 | ("a", "b"), [pytest.param(1, 2), pytest.param(3, 4)], ids=["a", None] |
| 622 | ) |
| 623 | assert result == ["a", "3-4"] |
| 624 | |
| 625 | def test_idmaker_with_paramset_id(self) -> None: |
| 626 | result = idmaker( |