Skip to content

Commit 19bcd07

Browse files
committed
Revert debug logging in OperatorTest
1 parent 8b72720 commit 19bcd07

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

src/test/java/suite/operator/OperatorTest.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,7 @@ public void testV2TokenValidate(String label, Operator operator, String operator
102102
"suite.operator.TestData#identityMapBatchBadPhoneArgs"
103103
})
104104
public void testV2IdentityMapUnmapped(String label, Operator operator, String operatorName, String payload) throws Exception {
105-
System.out.println("========================================");
106-
System.out.println("TEST: testV2IdentityMapUnmapped");
107-
System.out.println("Label: " + label);
108-
System.out.println("Operator: " + operatorName);
109-
System.out.println("Payload: " + payload);
110-
111105
JsonNode response = operator.v2IdentityMap(payload);
112-
113-
System.out.println("Response: " + response.toString());
114-
System.out.println("Status: " + response.at("/status").asText());
115-
System.out.println("Unmapped reason: " + response.at("/body/unmapped/0/reason").asText());
116-
System.out.println("========================================");
117106

118107
assertThat(response.at("/status").asText()).isEqualTo("success");
119108
assertThat(response.at("/body/unmapped/0/reason").asText()).isEqualTo("invalid identifier");

0 commit comments

Comments
 (0)