Skip to content

Commit 014109c

Browse files
committed
Remove invalid case
1 parent 0033813 commit 014109c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test_typing_extensions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7218,9 +7218,8 @@ def test_alias_types_and_substitutions(self):
72187218
# Simple cases
72197219
TypeAliasType("ListT", List[T], type_params=(T,)),
72207220
TypeAliasType("UnionT", Union[int, List[T]], type_params=(T,)),
7221-
# Either value or type_params contain generic
7221+
# Value has no parameter but in type_param
72227222
TypeAliasType("ValueWithoutT", int, type_params=(T,)),
7223-
TypeAliasType("ValueTNoParams", List[T], type_params=()),
72247223
# Callable
72257224
TypeAliasType("CallableP", Callable[P, Any], type_params=(P, )),
72267225
TypeAliasType("CallableT", Callable[..., T], type_params=(T, )),

0 commit comments

Comments
 (0)