File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -4869,8 +4869,6 @@ def test_pep695_generic_with_future_annotations(self):
4869
4869
self .assertEqual (hints_for_B , {"x" : int , "y" : str , "z" : bytes })
4870
4870
4871
4871
hints_for_C = get_type_hints (ann_module695 .C )
4872
- self .assertNotIn (int , hints_for_C .values ())
4873
- self .assertNotIn (str , hints_for_C .values ())
4874
4872
self .assertEqual (
4875
4873
set (hints_for_C .values ()),
4876
4874
set (ann_module695 .C .__type_params__ )
@@ -4887,8 +4885,6 @@ def test_pep695_generic_with_future_annotations(self):
4887
4885
self .assertIs (hints_for_generic_function ["zz" ].__origin__ , func_t_params [2 ])
4888
4886
4889
4887
hints_for_generic_method = get_type_hints (ann_module695 .D .generic_method )
4890
- self .assertNotIn (int , hints_for_generic_method .values ())
4891
- self .assertNotIn (str , hints_for_generic_method .values ())
4892
4888
params = {
4893
4889
param .__name__ : param
4894
4890
for param in ann_module695 .D .generic_method .__type_params__
You can’t perform that action at this time.
0 commit comments