Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushaga14 committed Jan 11, 2024
1 parent 79e64ca commit b3bfd96
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public static Map<String, List<String>> resolveWordList(Map<String, List<String>
}


public static void resolveWordList(Map<String, Object> varMap, Map<ApiInfoKey, List<String>> sampleDataMap, ApiInfo.ApiInfoKey apiInfoKey) {
public static void resolveWordList(Map<String, Object> varMap, Map<ApiInfoKey, List<String>> sampleDataMap, ApiInfo.ApiInfoKey apiInfoKey) {

for (String k: varMap.keySet()) {
if (!k.contains("wordList_")) {
Expand Down Expand Up @@ -404,9 +404,9 @@ public static void resolveWordList(Map<String, Object> varMap, Map<ApiInfoKey, L
if (infoKey.getApiCollectionId() != apiInfoKey.getApiCollectionId()) {
continue;
}
if (infoKey.equals(apiInfoKey)) {
sample.remove(0);
}
// if (infoKey.equals(apiInfoKey)) {
// sample.remove(0);
// }
modifiedSampleDataMap.put(infoKey, sample);
}
} else {
Expand Down

0 comments on commit b3bfd96

Please sign in to comment.