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
path: root/spec
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-10-16 09:40:31 +0300
committerStan Hu <stanhu@gmail.com>2017-10-16 09:40:31 +0300
commitde32a17d8f5a1112d0e27908440305545c82e7d1 (patch)
tree3385377a6522e4ccb3cea05a1e308b18c06cf9f4 /spec
parent1e554d0a9796954aa4c0e2dc54769c93a4d7ee75 (diff)
Fix bad merge with spec/models/namespace_spec.rb
Diffstat (limited to 'spec')
-rw-r--r--spec/models/namespace_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/namespace_spec.rb b/spec/models/namespace_spec.rb
index e40ade18902..a241d4111bd 100644
--- a/spec/models/namespace_spec.rb
+++ b/spec/models/namespace_spec.rb
@@ -165,7 +165,7 @@ describe Namespace do
it "moves dir if path changed" do
namespace.update_attributes(path: namespace.full_path + '_new')
- expect(gitlab_shell.exists?(@project.repository_storage_path, "#{namespace.path}/#{@project.path}.git")).to be_truthy
+ expect(gitlab_shell.exists?(project.repository_storage_path, "#{namespace.path}/#{project.path}.git")).to be_truthy
end
context "when any project has container images" do