diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 17:38:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 07:38:14 +0900 |
commit | 81ad6c2e39393ff20450385cb37dd9bf6e6651e5 (patch) | |
tree | e90ce3b793e696928a898251f75d9ab99ee3b65b /spec/controllers/oauth | |
parent | ac3561098e9cd1fd1ccee558295eb9f3430099d6 (diff) |
Autofix Rubocop Style/StringLiterals (#23695)
Diffstat (limited to 'spec/controllers/oauth')
-rw-r--r-- | spec/controllers/oauth/authorized_applications_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/oauth/authorized_applications_controller_spec.rb b/spec/controllers/oauth/authorized_applications_controller_spec.rb index 901e538e9..885bfa35b 100644 --- a/spec/controllers/oauth/authorized_applications_controller_spec.rb +++ b/spec/controllers/oauth/authorized_applications_controller_spec.rb @@ -13,7 +13,7 @@ describe Oauth::AuthorizedApplicationsController do shared_examples 'stores location for user' do it 'stores location for user' do subject - expect(controller.stored_location_for(:user)).to eq "/oauth/authorized_applications" + expect(controller.stored_location_for(:user)).to eq '/oauth/authorized_applications' end end |