-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only emits the warning for gcloud credentials (#202)
* Only emits the warning for gcloud credentials * Suppress the warning by setting an env var * Add a test which should fail * Indentation * Add tests for gcloud creds warning * Added a forgotten semicolon * Use full path for ExpectedException * Use old style class name * Removed unnecessary string concatinations
- Loading branch information
Takashi Matsuo
authored
Jul 23, 2018
1 parent
1af6b99
commit ad7cdc2
Showing
5 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"client_id": "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.apps.googleusercontent.com", | ||
"client_secret": "dummy_client_secret", | ||
"refresh_token": "dummy_refresh_token", | ||
"type": "authorized_user" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"client_id": "valid.apps.googleusercontent.com", | ||
"client_secret": "dummy_client_secret", | ||
"refresh_token": "dummy_refresh_token", | ||
"type": "authorized_user" | ||
} |