summaryrefslogtreecommitdiff
path: root/spec/features/users_spec.rb
diff options
context:
space:
mode:
authorPatricio Cano <patricio@gitlab.com>2014-10-22 20:39:02 -0500
committerPatricio Cano <patricio@gitlab.com>2014-10-22 20:39:02 -0500
commit7039c9868a3209d89f8306c65ca5b74f8e2ea2c0 (patch)
treeaa9f2c79b84374b1c86704a8d2abc0d0f6e41526 /spec/features/users_spec.rb
parent10528341c296fafca8388159d7b0023cd2ffb1cb (diff)
downloadgitlab-ce-7039c9868a3209d89f8306c65ca5b74f8e2ea2c0.tar.gz
Updated the IDs of the fields, so that it wouldn't mess with many tests
Updated some tests to match new IDs
Diffstat (limited to 'spec/features/users_spec.rb')
-rw-r--r--spec/features/users_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/users_spec.rb b/spec/features/users_spec.rb
index 7b831c48611..a1206989d39 100644
--- a/spec/features/users_spec.rb
+++ b/spec/features/users_spec.rb
@@ -11,7 +11,7 @@ describe 'Users', feature: true do
fill_in "user_name", with: "Name Surname"
fill_in "user_username", with: "Great"
fill_in "user_email", with: "name@mail.com"
- fill_in "user_password", with: "password1234"
+ fill_in "user_password_sign_up", with: "password1234"
fill_in "user_password_confirmation", with: "password1234"
expect { click_button "Sign up" }.to change {User.count}.by(1)
end