Replace uninitialized constant

This commit is contained in:
Mike Milner 2016-01-08 13:17:49 -05:00
parent a99a2204b0
commit 62a8d41bc4
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ END
def self.read_creds
env_var = CredentialsLoader::ACCOUNT_TYPE_VAR
type = ENV[env_var]
fail "#{ACCOUNT_TYPE_VAR} is undefined in env" unless type
fail "#{env_var} is undefined in env" unless type
case type
when 'service_account'
ServiceAccountCredentials