Arthur-Wu committed this file on 2024-11-18

This commit is contained in:
ieemoo
2024-11-18 13:15:22 +08:00
parent 0829b7a15a
commit 1e74762193
2 changed files with 0 additions and 10 deletions

View File

@ -12,7 +12,6 @@ def _assert_result(RspJson, ExpRespJson_c, LOGGER):
FailedCase = []
if ExpRespJson_c["data"] not in ['', None, True, False, "true", "false"]:
if type(RspJson["data"]) == dict:
# 0302-校验返回体中的修改的参数值是否正确
for key, expect_value in ExpRespJson_c['data'].items():
return_value = RspJson['data'][key]
if expect_value == return_value: