fix spacing and wrap method params in parens

This commit is contained in:
Mike Greiling 2018-01-22 16:01:48 -06:00
parent de4993d4c5
commit 2c1d7c0948
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ describe ProjectsHelper do
it 'allows visibility level to be changed if the project is forked' do
allow(helper).to receive(:can?).with(user, :change_visibility_level, project) { true }
project.update! visibility_level: Gitlab::VisibilityLevel::PRIVATE
project.update!(visibility_level: Gitlab::VisibilityLevel::PRIVATE)
fork_project(project)
expect(helper.can_change_visibility_level?(project, user)).to be_truthy
@ -40,7 +40,7 @@ describe ProjectsHelper do
it "returns false if there are permissions and origin project is PRIVATE" do
allow(helper).to receive(:can?) { true }
project.update visibility_level: Gitlab::VisibilityLevel::PRIVATE
project.update(visibility_level: Gitlab::VisibilityLevel::PRIVATE)
expect(helper.can_change_visibility_level?(forked_project, user)).to be_falsey
end
@ -48,7 +48,7 @@ describe ProjectsHelper do
it "returns true if there are permissions and origin project is INTERNAL" do
allow(helper).to receive(:can?) { true }
project.update visibility_level: Gitlab::VisibilityLevel::INTERNAL
project.update(visibility_level: Gitlab::VisibilityLevel::INTERNAL)
expect(helper.can_change_visibility_level?(forked_project, user)).to be_truthy
end