diff --git a/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md b/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md index febce9f98d..1b8d82688e 100644 --- a/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md +++ b/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md @@ -678,6 +678,6 @@ def _(x: list[str]): # TODO: This fails because we are not propagating GenericClass's generic context into the # Callable that we create for it. # TODO: revealed: GenericClass[str] - # revealed: Top[GenericClass[Unknown]] + # revealed: Unknown reveal_type(accepts_callable(GenericClass)(x, x)) ```