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:
authorBryce Johnson <bryce@gitlab.com>2016-09-27 15:54:15 +0300
committerBryce Johnson <bryce@gitlab.com>2016-10-15 09:28:52 +0300
commit076749645a51c4fe948cdf5ed16dc8455a9aae05 (patch)
tree93584de12cb6b207770438ced2fb38736de4f26d
parent49688d399a3b3c7d3ec50ae0bb728ff0d25671b0 (diff)
Shush rubocop.
-rw-r--r--spec/features/users_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/users_spec.rb b/spec/features/users_spec.rb
index 73d6fb6b651..17a555e4673 100644
--- a/spec/features/users_spec.rb
+++ b/spec/features/users_spec.rb
@@ -65,13 +65,13 @@ feature 'Users', feature: true, js: true do
@username_field = find '#new_user_username'
end
- scenario 'shows an error border if the username already exists', focus: true do
+ scenario 'shows an error border if the username already exists' do
fill_in username_input, with: user.username
wait_for_ajax
expect(@username_form_group).to have_css '.gl-field-error-outline'
end
- scenario 'doesn\'t show an error border if the username is available', focus: true do
+ scenario 'doesn\'t show an error border if the username is available' do
fill_in username_input, with: 'new-user'
wait_for_ajax
expect(@username_field).not_to have_css '.gl-field-error-outline'