Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in ComputeEngineCredentials exception message #313

Merged
merged 3 commits into from Jul 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -269,7 +269,7 @@ public String getAccount() {
try {
serviceAccountEmail = getDefaultServiceAccount();
} catch (IOException ex) {
throw new RuntimeException("Failed to to get service account", ex);
throw new RuntimeException("Failed to get service account", ex);
}
}
return serviceAccountEmail;
Expand Down
Expand Up @@ -235,7 +235,7 @@ public LowLevelHttpResponse execute() throws IOException {
credentials.getAccount();
fail("Fetching default service account should have failed");
} catch (RuntimeException e) {
assertEquals("Failed to to get service account", e.getMessage());
assertEquals("Failed to get service account", e.getMessage());
assertNotNull(e.getCause());
assertTrue(e.getCause().getMessage().contains("404"));
}
Expand Down Expand Up @@ -271,7 +271,7 @@ public LowLevelHttpResponse execute() throws IOException {
credentials.getAccount();
fail("Fetching default service account should have failed");
} catch (RuntimeException e) {
assertEquals("Failed to to get service account", e.getMessage());
assertEquals("Failed to get service account", e.getMessage());
assertNotNull(e.getCause());
assertTrue(e.getCause().getMessage().contains("Empty content"));
}
Expand Down