Skip to content

Commit d572924

Browse files
committed
Fix test
Signed-off-by: Jared O'Connell <[email protected]>
1 parent 3f20449 commit d572924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/utils/test_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_registered_type():
2626
"""Test that RegisterT is configured correctly as a TypeVar."""
2727
assert isinstance(RegisterT, type(TypeVar("test")))
2828
assert RegisterT.__name__ == "RegisterT"
29-
assert RegisterT.__bound__ is None
29+
assert RegisterT.__bound__ is type
3030
assert RegisterT.__constraints__ == ()
3131

3232

0 commit comments

Comments
 (0)