Skip to content

Commit 976079d

Browse files
committed
confirm deleting is the problem
1 parent ffe6dd0 commit 976079d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth/src/test/java/com/google/cloud/auth/samples/AuthExampleIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ public void testAuthApiKey() throws IOException, IllegalStateException {
7272
try {
7373
apiKey = AuthTestUtils.createTestApiKey(projectId, keyDisplayName, service, method);
7474
assertNotNull(apiKey);
75-
assert
75+
System.out.println("key string " + apiKey.getKeyString());
7676
String output = ApiKeyAuthExample.authenticateUsingApiKey(apiKey.getKeyString());
77-
7877
assertTrue(output.contains("magnitude:"));
7978
} finally {
8079
if (apiKey != null) {
80+
System.out.println("trying to delete " + apiKey.getKeyString());
8181
// AuthTestUtils.deleteTestApiKey(apiKey.getName());
8282
}
8383
}

0 commit comments

Comments
 (0)