Commit 7460c39f authored by Robert Speicher's avatar Robert Speicher Committed by Dmitriy Zaporozhets

Fix GitPushService spec

parent 2120e2dd
...@@ -124,8 +124,9 @@ describe GitPushService do ...@@ -124,8 +124,9 @@ describe GitPushService do
end end
it "when pushing a branch for the first time with default branch protection disabled" do it "when pushing a branch for the first time with default branch protection disabled" do
allow_any_instance_of(ApplicationSetting). allow(ApplicationSetting.current_application_settings).
to receive(:default_branch_protection).and_return(0) to receive(:default_branch_protection).
and_return(Gitlab::Access::PROTECTION_NONE)
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
expect(project.default_branch).to eq("master") expect(project.default_branch).to eq("master")
...@@ -134,8 +135,9 @@ describe GitPushService do ...@@ -134,8 +135,9 @@ describe GitPushService do
end end
it "when pushing a branch for the first time with default branch protection set to 'developers can push'" do it "when pushing a branch for the first time with default branch protection set to 'developers can push'" do
allow_any_instance_of(ApplicationSetting). allow(ApplicationSetting.current_application_settings).
to receive(:default_branch_protection).and_return(1) to receive(:default_branch_protection).
and_return(Gitlab::Access::PROTECTION_DEV_CAN_PUSH)
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
expect(project.default_branch).to eq("master") expect(project.default_branch).to eq("master")
......
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