File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ def test_util_alias_import() -> None:
105
105
106
106
107
107
def test_private_module_alias_access () -> None :
108
- """Non-util private alias access works, warns, but is a deliberate mypy error."""
108
+ """Non-util private alias access works but warns and is a deliberate mypy error."""
109
109
with pytest .deprecated_call () as ctx :
110
110
assert (
111
111
git .head , # type: ignore[attr-defined]
@@ -128,7 +128,7 @@ def test_private_module_alias_access() -> None:
128
128
129
129
130
130
def test_private_module_alias_import () -> None :
131
- """Non-util private alias access works, warns, but is a deliberate mypy error."""
131
+ """Non-util private alias import works but warns and is a deliberate mypy error."""
132
132
with pytest .deprecated_call () as ctx :
133
133
from git import head # type: ignore[attr-defined]
134
134
from git import log # type: ignore[attr-defined]
You can’t perform that action at this time.
0 commit comments