refactor(测试跟踪): 增加过滤获取环境为空值的条件

--user=郭雨琦
This commit is contained in:
guoyuqi 2022-11-09 12:02:40 +08:00 committed by xiaomeinvG
parent 1eb7b3b5af
commit 5dc609282b
1 changed files with 3 additions and 0 deletions

View File

@ -748,6 +748,9 @@ public class TestPlanScenarioCaseService {
Set<String> set = map.keySet();
for (String s : set) {
String e = map.get(s);
if (StringUtils.isBlank(e)) {
continue;
}
if (envMap.containsKey(s)) {
List<String> list = envMap.get(s);
if (!list.contains(e)) {