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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-06 10:15:41 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-06 10:15:41 +0300
commita99083424b80345d0be89d5393b7980fcfea2264 (patch)
tree7535b55de0432d05f95e9ea2591e5ffe64d5e218 /spec/features/projects
parent320ad563b52556c10945eeb9bba8dbf9dc47724d (diff)
Fix project_path helper arguments in wiki specs
Diffstat (limited to 'spec/features/projects')
-rw-r--r--spec/features/projects/wiki/user_creates_wiki_page_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/projects/wiki/user_creates_wiki_page_spec.rb b/spec/features/projects/wiki/user_creates_wiki_page_spec.rb
index 2d80039c974..9d66f482c8d 100644
--- a/spec/features/projects/wiki/user_creates_wiki_page_spec.rb
+++ b/spec/features/projects/wiki/user_creates_wiki_page_spec.rb
@@ -7,7 +7,7 @@ feature 'Projects > Wiki > User creates wiki page', :js do
project.team << [user, :master]
sign_in(user)
- visit project_path(project.namespace, project)
+ visit project_path(project)
end
context 'in the user namespace' do