Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
85f034ff
Commit
85f034ff
authored
Dec 02, 2021
by
Siddharth Asthana
Committed by
Peter Leitzen
Jan 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Style/OpenStructUse offenses
Changelog: other
parent
62f7c18d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
.rubocop_todo/style/open_struct_use.yml
.rubocop_todo/style/open_struct_use.yml
+0
-1
spec/initializers/doorkeeper_spec.rb
spec/initializers/doorkeeper_spec.rb
+1
-1
No files found.
.rubocop_todo/style/open_struct_use.yml
View file @
85f034ff
...
...
@@ -26,7 +26,6 @@ Style/OpenStructUse:
-
spec/graphql/mutations/commits/create_spec.rb
-
spec/helpers/application_settings_helper_spec.rb
-
spec/helpers/profiles_helper_spec.rb
-
spec/initializers/doorkeeper_spec.rb
-
spec/lib/gitlab/auth/o_auth/provider_spec.rb
-
spec/lib/gitlab/database/migrations/runner_spec.rb
-
spec/lib/gitlab/gitaly_client/blobs_stitcher_spec.rb
...
...
spec/initializers/doorkeeper_spec.rb
View file @
85f034ff
...
...
@@ -24,7 +24,7 @@ RSpec.describe Doorkeeper.configuration do
before
do
allow
(
controller
).
to
receive
(
:current_user
).
and_return
(
current_user
)
allow
(
controller
).
to
receive
(
:session
).
and_return
({})
allow
(
controller
).
to
receive
(
:request
).
and_return
(
OpenStruct
.
new
(
fullpath:
'/return-path'
))
allow
(
controller
).
to
receive
(
:request
).
and_return
(
double
(
'request'
,
fullpath:
'/return-path'
))
allow
(
controller
).
to
receive
(
:redirect_to
)
allow
(
controller
).
to
receive
(
:new_user_session_url
).
and_return
(
'/login'
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment