Commit cc11c44b authored by Yorick Peterse's avatar Yorick Peterse

Align hash literals to keep Rubocop happy

parent 26482bdd
......@@ -15,10 +15,10 @@ describe ContributedProjectsFinder do
public_project.team << [source_user, Gitlab::Access::MASTER]
create(:event, action: Event::PUSHED, project: public_project,
target: public_project, author: source_user)
target: public_project, author: source_user)
create(:event, action: Event::PUSHED, project: private_project,
target: private_project, author: source_user)
target: private_project, author: source_user)
end
describe 'without a current user' do
......
......@@ -8,12 +8,12 @@ describe PersonalProjectsFinder do
let!(:public_project) do
create(:project, :public, namespace: source_user.namespace, name: 'A',
path: 'A')
path: 'A')
end
let!(:private_project) do
create(:project, :private, namespace: source_user.namespace, name: 'B',
path: 'B')
path: 'B')
end
before do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment