Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-05-26 14:37:49 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-05-26 14:37:49 +0400
commit3272620f724737f4dbb5e8c02f1610946435cd29 (patch)
treeae9fb3daccdf6b008ccb9c31d435e9548113c6ee /spec/models/protected_branch_spec.rb
parent8ceb94081ac516ccaed43f0f4841725a4f9fe2db (diff)
lib/ refactoring. Module Gitlabhq renamed to Gitlab
Diffstat (limited to 'spec/models/protected_branch_spec.rb')
-rw-r--r--spec/models/protected_branch_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/protected_branch_spec.rb b/spec/models/protected_branch_spec.rb
index ce79f674787..024b45f2cab 100644
--- a/spec/models/protected_branch_spec.rb
+++ b/spec/models/protected_branch_spec.rb
@@ -43,7 +43,7 @@ describe ProtectedBranch do
subject { ProtectedBranch.new(:project => project) }
it "updates the branch's project repo permissions" do
- Gitlabhq::GitHost.should_receive(:system).and_return(gitolite)
+ Gitlab::GitHost.should_receive(:system).and_return(gitolite)
gitolite.should_receive(:update_project).with(project.path, project)
subject.update_repository