Skip to content

Commit a68bfde

Browse files
committed
Fix lint
1 parent 0b636f6 commit a68bfde

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/rubygems/test_gem_commands_signin_command.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def test_execute_with_key_name_scope_and_mfa_level_of_gem_signin
164164
def util_capture(ui_stub = nil, host = nil, api_key = nil, fetcher = Gem::FakeFetcher.new, mfa_level = "disabled")
165165
api_key ||= 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
166166
response = [api_key, 200, 'OK']
167-
profile_response =[{"mfa" => mfa_level}.to_json, 200, 'OK']
167+
profile_response = [{"mfa" => mfa_level}.to_json, 200, 'OK']
168168
email = 'you@example.com'
169169
password = 'secret'
170170

test/rubygems/test_gem_gemcutter_utilities.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ def test_sign_in_with_incorrect_otp_code
227227
end
228228

229229
def util_sign_in(response, host = nil, args = [], extra_input = '')
230-
email = 'you@example.com'
231-
password = 'secret'
232-
profile_response =[{"mfa" => "disabled"}.to_json, 200, 'OK']
230+
email = 'you@example.com'
231+
password = 'secret'
232+
profile_response = [{"mfa" => "disabled"}.to_json, 200, 'OK']
233233

234234
if host
235235
ENV['RUBYGEMS_HOST'] = host

0 commit comments

Comments
 (0)