Skip to content

Commit b8af417

Browse files
committed
Revert debug changes in .trivyignore and TestData
1 parent 19bcd07 commit b8af417

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

.trivyignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# List any vulnerability that are to be accepted
22
# See https://aquasecurity.github.io/trivy/v0.35/docs/vulnerability/examples/filter/
33
# for more details
4-
5-
6-
#skip this cve to unblock debug testing
7-
CVE-2025-55163

src/test/java/suite/operator/TestData.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,9 @@ public static Set<Arguments> identityMapBatchBadEmailArgs() {
278278
);
279279

280280
Set<Arguments> args = new HashSet<>();
281-
int index = 0;
282281
for (Operator operator : operators) {
283282
for (List<String> input : inputs) {
284-
System.out.println("[EMAIL-BAD-" + index + "] " + input.get(0) + " | Operator: " + operator.getName());
285283
args.add(Arguments.of(input.get(0), operator, operator.getName(), input.get(1)));
286-
index++;
287284
}
288285
}
289286
return args;
@@ -300,17 +297,11 @@ public static Set<Arguments> identityMapBatchBadPhoneArgs() {
300297

301298
Set<Arguments> args = new HashSet<>();
302299
if (App.PHONE_SUPPORT) {
303-
System.out.println("PHONE_SUPPORT is TRUE - generating phone tests");
304-
int index = 0;
305300
for (Operator operator : operators) {
306301
for (List<String> input : inputs) {
307-
System.out.println("[PHONE-BAD-" + index + "] " + input.get(0) + " | Operator: " + operator.getName());
308302
args.add(Arguments.of(input.get(0), operator, operator.getName(), input.get(1)));
309-
index++;
310303
}
311304
}
312-
} else {
313-
System.out.println("PHONE_SUPPORT is FALSE - skipping phone tests");
314305
}
315306
return args;
316307
}

0 commit comments

Comments
 (0)