fix(接口测试): 修复查询部分未执行场景时查不到的问题
--bug=1017155 --user=宋天阳 【接口测试】接口首页场景用例数量未执行进行跳转,跳转页面显示条目数与首页记录条目数不一致 https://www.tapd.cn/55049933/s/1249915
This commit is contained in:
parent
d695c65e03
commit
1b2a5eb920
|
@ -277,7 +277,7 @@
|
|||
and (api_scenario.status is null or api_scenario.status != 'Trash')
|
||||
</if>
|
||||
<if test="request.executeStatus == 'unExecute' and request.selectDataType != 'schedule' ">
|
||||
and (api_scenario.last_result IS NULL or api_scenario.last_result = 'unexecute')
|
||||
and (api_scenario.last_result IS NULL or api_scenario.last_result = 'unexecute' or api_scenario.last_result = '')
|
||||
</if>
|
||||
<if test="request.executeStatus == 'executeFailed' and request.selectDataType != 'schedule' ">
|
||||
and api_scenario.last_result = 'Fail'
|
||||
|
@ -696,7 +696,7 @@
|
|||
</foreach>
|
||||
</if>
|
||||
<if test="request.executeStatus == 'unExecute'">
|
||||
and api_scenario.last_result IS NULL
|
||||
and (api_scenario.last_result IS NULL OR api_scenario.last_result = '')
|
||||
</if>
|
||||
<if test="request.executeStatus == 'executeFailed'">
|
||||
and api_scenario.last_result = 'Fail'
|
||||
|
|
Loading…
Reference in New Issue