Skip to content

Commit f292687

Browse files
fix tests
1 parent 3331021 commit f292687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pedantic/type_checking_logic/check_generic_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def check_instance_of_generic_class_and_get_type_vars(instance: Any) -> Dict[Typ
2828
>>> e = B[int]()
2929
Traceback (most recent call last):
3030
...
31-
TypeError: Too few ...; actual 1, expected 2
31+
TypeError: Too few ...; actual 1, expect... 2
3232
>>> f = B[int, float]()
3333
>>> check_instance_of_generic_class_and_get_type_vars(f)
3434
{~T: <class 'int'>, ~S: <class 'float'>}

0 commit comments

Comments
 (0)