We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c9e5ca commit 0eac720Copy full SHA for 0eac720
atest/tests_types.robot
@@ -102,9 +102,12 @@ Python 3.10 New Type Hints
102
ELSE
103
Should Be Equal ${types} arg: 111, type: <class 'str'>
104
END
105
- Should Be Equal ${types} arg: 111, type: <class 'int'>
106
${types} = Python310 Style {"key": 1}
107
- Should Be Equal ${types} arg: {'key': 1}, type: <class 'dict'>
+ IF ${rf401} != ${True}
+ Should Be Equal ${types} arg: {'key': 1}, type: <class 'dict'>
108
+ ELSE
109
+ Should Be Equal ${types} arg: {"key": 1}, type: <class 'str'>
110
+ END
111
112
*** Keywords ***
113
Import DynamicTypesAnnotationsLibrary In Python 3.10 Only
0 commit comments