File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -187,13 +187,11 @@ def test_keyword_with_decorator_arguments(lib_types):
187
187
188
188
@pytest .mark .skipif (RF32 , reason = 'Only for RF4+' )
189
189
def test_keyword_optional_with_none_rf4 (lib_types ):
190
- lib = DynamicTypesAnnotationsLibrary ("111" )
191
- types = lib .get_keyword_types ('keyword_optional_with_none' )
190
+ types = lib_types .get_keyword_types ('keyword_optional_with_none' )
192
191
assert types == {'arg' : typing .Union [str , type (None )]}
193
192
194
193
195
194
@pytest .mark .skipif (not RF32 , reason = 'Only for RF3.2+' )
196
195
def test_keyword_optional_with_none_rf32 (lib_types ):
197
- lib = DynamicTypesAnnotationsLibrary ("111" )
198
- types = lib .get_keyword_types ('keyword_optional_with_none' )
196
+ types = lib_types .get_keyword_types ('keyword_optional_with_none' )
199
197
assert types == {'arg' : str }
You can’t perform that action at this time.
0 commit comments