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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-05 00:54:19 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-05 00:54:19 +0300
commit61d07eabfc7b9ad44b0d50f73003cabe28a04b42 (patch)
treeabb00b63bb1838efbc0e90d63386a8acb2562e0f /spec/features/help_pages_spec.rb
parent6ca23357c439c3396ee5911ecd0099d8a48968d9 (diff)
Fix tests
Diffstat (limited to 'spec/features/help_pages_spec.rb')
-rw-r--r--spec/features/help_pages_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/help_pages_spec.rb b/spec/features/help_pages_spec.rb
index 5850a24a420..89129cfc7cd 100644
--- a/spec/features/help_pages_spec.rb
+++ b/spec/features/help_pages_spec.rb
@@ -6,7 +6,7 @@ describe 'Help Pages', feature: true do
login_as :user
end
it 'replace the variable $your_email with the email of the user' do
- visit help_page_path(category: 'ssh', file: 'ssh.md')
+ visit help_page_path(category: 'ssh', file: 'README.md')
page.should have_content("ssh-keygen -t rsa -C \"#{@user.email}\"")
end
end