We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bce848b commit 8c43772Copy full SHA for 8c43772
testing/test_argparsing_repr_fix.py
@@ -3,6 +3,7 @@
3
from __future__ import annotations
4
5
from _pytest.config.argparsing import ArgumentError
6
+from _pytest.config.argparsing import NOT_SET
7
from _pytest.config.argparsing import Parser
8
import pytest
9
@@ -62,4 +63,4 @@ def test_repr_with_dest_set(self) -> None:
62
63
64
# Should contain the dest
65
assert "dest: 'valid_dest'" in repr_str
- assert "<not set>" not in repr_str
66
+ assert "NOT_SET" not in repr_str
0 commit comments