提交 888998bc 编写于 作者: M mindspore-ci-bot 提交者: Gitee

!460 Solve the case sensitive problem when searching elements

Merge pull request !460 from zyhStack/zyh_mindinsight
......@@ -214,7 +214,7 @@ class BaseAnalyser(ABC):
return False
elif exp_key == 'partial_match_str_in':
for partial_match_str in exp_value:
if partial_match_str in actual_value:
if partial_match_str.lower() in actual_value.lower():
return True
return False
else:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册