Add spaces around method arguments when setting default values

Closes #5288
This commit is contained in:
mune
2020-08-31 20:46:43 +09:00
committed by Carlos Antonio da Silva
parent 97aa37bb50
commit eed641d2be
23 changed files with 47 additions and 47 deletions

View File

@@ -5,7 +5,7 @@ require 'test_helper'
class OmniAuthRoutesTest < ActionController::TestCase
tests ApplicationController
def assert_path(action, provider, with_param=true)
def assert_path(action, provider, with_param = true)
# Resource param
assert_equal @controller.send(action, :user, provider),
@controller.send("user_#{provider}_#{action}")