summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/rubygems/test_gem_commands_signin_command.rb2
-rw-r--r--test/rubygems/test_gem_gemcutter_utilities.rb6
2 files changed, 4 insertions, 4 deletions
diff --git a/test/rubygems/test_gem_commands_signin_command.rb b/test/rubygems/test_gem_commands_signin_command.rb
index c2c3aac76f..7dc5d6d23a 100644
--- a/test/rubygems/test_gem_commands_signin_command.rb
+++ b/test/rubygems/test_gem_commands_signin_command.rb
@@ -164,7 +164,7 @@ class TestGemCommandsSigninCommand < Gem::TestCase
def util_capture(ui_stub = nil, host = nil, api_key = nil, fetcher = Gem::FakeFetcher.new, mfa_level = "disabled")
api_key ||= 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
response = [api_key, 200, 'OK']
- profile_response =[{"mfa" => mfa_level}.to_json, 200, 'OK']
+ profile_response = [{"mfa" => mfa_level}.to_json, 200, 'OK']
email = 'you@example.com'
password = 'secret'
diff --git a/test/rubygems/test_gem_gemcutter_utilities.rb b/test/rubygems/test_gem_gemcutter_utilities.rb
index 6eebea6ca7..2e3e598ef4 100644
--- a/test/rubygems/test_gem_gemcutter_utilities.rb
+++ b/test/rubygems/test_gem_gemcutter_utilities.rb
@@ -227,9 +227,9 @@ class TestGemGemcutterUtilities < Gem::TestCase
end
def util_sign_in(response, host = nil, args = [], extra_input = '')
- email = 'you@example.com'
- password = 'secret'
- profile_response =[{"mfa" => "disabled"}.to_json, 200, 'OK']
+ email = 'you@example.com'
+ password = 'secret'
+ profile_response = [{"mfa" => "disabled"}.to_json, 200, 'OK']
if host
ENV['RUBYGEMS_HOST'] = host