Skip to content

Commit 0eac720

Browse files
committed
Fix atest
1 parent 1c9e5ca commit 0eac720

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

atest/tests_types.robot

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,12 @@ Python 3.10 New Type Hints
102102
ELSE
103103
Should Be Equal ${types} arg: 111, type: <class 'str'>
104104
END
105-
Should Be Equal ${types} arg: 111, type: <class 'int'>
106105
${types} = Python310 Style {"key": 1}
107-
Should Be Equal ${types} arg: {'key': 1}, type: <class 'dict'>
106+
IF ${rf401} != ${True}
107+
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
108111

109112
*** Keywords ***
110113
Import DynamicTypesAnnotationsLibrary In Python 3.10 Only

0 commit comments

Comments
 (0)