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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-18 02:46:13 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-18 02:46:13 +0400
commitc9ea5f1316473f5ae33b24b673631f421b90a063 (patch)
treea7ba4bf5f443553dca1918849e46c3b151bc2ff7 /spec
parent809413d9e758547241530001efa35dececfcf787 (diff)
deploy key creation restyled
Diffstat (limited to 'spec')
-rw-r--r--spec/requests/projects_deploy_keys_spec.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/requests/projects_deploy_keys_spec.rb b/spec/requests/projects_deploy_keys_spec.rb
index 8258f2609a1..629c28871a4 100644
--- a/spec/requests/projects_deploy_keys_spec.rb
+++ b/spec/requests/projects_deploy_keys_spec.rb
@@ -36,7 +36,7 @@ describe "Projects", "DeployKeys" do
end
it "should open new key popup" do
- page.should have_content("Add new public key")
+ page.should have_content("New Deploy key")
end
describe "fill in" do
@@ -50,7 +50,6 @@ describe "Projects", "DeployKeys" do
it "should add new key to table" do
click_button "Save"
- page.should_not have_content("Add new public key")
page.should have_content "laptop"
end
end