diff --git a/python/testSrc/com/jetbrains/python/inspections/PyTypeHintsInspectionTest.java b/python/testSrc/com/jetbrains/python/inspections/PyTypeHintsInspectionTest.java index d03d50e095ee..31cb9a45ced5 100644 --- a/python/testSrc/com/jetbrains/python/inspections/PyTypeHintsInspectionTest.java +++ b/python/testSrc/com/jetbrains/python/inspections/PyTypeHintsInspectionTest.java @@ -91,8 +91,8 @@ public class PyTypeHintsInspectionTest extends PyInspectionTestCase { T11 = TypeVar('T11', my_int, my_str) my_list_t1 = List[T1] - T22 = TypeVar('T22', int, my_list_t1) - T33 = TypeVar('T33', bound=my_list_t1) + T22 = TypeVar('T22', int, my_list_t1) + T33 = TypeVar('T33', bound=my_list_t1) my_list_int = List[int] T44 = TypeVar('T44', int, my_list_int)