Skip to content
Snippets Groups Projects
Commit c799e818 authored by Tim Emiola's avatar Tim Emiola
Browse files

Adds a missing return

parent ce062f21
No related branches found
No related tags found
No related merge requests found
...@@ -195,6 +195,7 @@ class NamedTests ...@@ -195,6 +195,7 @@ class NamedTests
# ignore this test if the oauth options are not set # ignore this test if the oauth options are not set
if @args.oauth_scope.nil? || @args.oauth_key_file.nil? if @args.oauth_scope.nil? || @args.oauth_key_file.nil?
p 'NOT RUN: service_account_creds; no service_account settings' p 'NOT RUN: service_account_creds; no service_account settings'
return
end end
json_key = File.read(@args.oauth_key_file) json_key = File.read(@args.oauth_key_file)
wanted_email = MultiJson.load(json_key)['client_email'] wanted_email = MultiJson.load(json_key)['client_email']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment