File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
atest/robot/standard_libraries/builtin Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
*** Settings ***
2
- Suite Setup Run Tests ${ EMPTY } standard_libraries/builtin/converter.robot
2
+ Suite Setup Run Tests --loglevel DEBUG standard_libraries/builtin/converter.robot
3
3
Force Tags regression
4
4
Default Tags jybot pybot
5
5
Resource atest_resource.robot
@@ -71,4 +71,4 @@ Create List
71
71
*** Keywords ***
72
72
Verify argument type message
73
73
[Arguments] ${msg } ${type1 }
74
- Check log message ${msg } Argument types are:\n<type '${type1 } '>
74
+ Check log message ${msg } Argument types are:\n<type '${type1 } '> DEBUG
Original file line number Diff line number Diff line change 1
1
*** Settings ***
2
- Suite Setup Run Tests ${ EMPTY } standard_libraries/builtin/verify.robot
2
+ Suite Setup Run Tests --loglevel DEBUG standard_libraries/builtin/verify.robot
3
3
Force Tags regression
4
4
Default Tags jybot pybot
5
5
Resource atest_resource.robot
@@ -168,7 +168,8 @@ Length Should Be
168
168
${tc } = Check Test Case ${TESTNAME }
169
169
Check Log Message ${tc.kws[-1].msgs[0] } Length is 2
170
170
Check Log Message ${tc.kws[-1].msgs[1] } Length of '*' should be 3 but is 2. FAIL pattern=yep
171
- Length Should Be ${tc.kws[-1].msgs } 2
171
+ Check Log Message ${tc.kws[-1].msgs[2] } Traceback* DEBUG pattern=yep
172
+ Length Should Be ${tc.kws[-1].msgs } 3
172
173
173
174
Length Should Be With Non Default Message
174
175
Check Test Case ${TESTNAME }
@@ -249,7 +250,7 @@ Verify argument type message
249
250
[Arguments] ${msg } ${type1 } ${type2 }
250
251
${type1 } = Str Type to Unicode On IronPython ${type1 }
251
252
${type2 } = Str Type to Unicode On IronPython ${type2 }
252
- Check log message ${msg } Argument types are:\n<type '${type1 } '>\n<type '${type2 } '>
253
+ Check log message ${msg } Argument types are:\n<type '${type1 } '>\n<type '${type2 } '> DEBUG
253
254
254
255
Str Type to Unicode On IronPython
255
256
[Arguments] ${type }
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def _is_true(self, condition):
85
85
86
86
def _log_types (self , * args ):
87
87
msg = ["Argument types are:" ] + [self ._get_type (a ) for a in args ]
88
- self .log ('\n ' .join (msg ))
88
+ self .log ('\n ' .join (msg ), 'DEBUG' )
89
89
90
90
def _get_type (self , arg ):
91
91
# In IronPython type(u'x') is str. We want to report unicode anyway.
You can’t perform that action at this time.
0 commit comments