summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2015-04-25 11:58:41 +0200
committerRobert Speicher <rspeicher@gmail.com>2015-06-14 23:00:09 -0400
commit5d204d1e85f29976bad9c7e6c1cbc1ec1c748d64 (patch)
treed61354abc72151bfb691a76e56d9cfdda5804e05
parentb64e96b7512260c11afe3206d377f45bc15e8262 (diff)
downloadgitlab-ce-5d204d1e85f29976bad9c7e6c1cbc1ec1c748d64.tar.gz
Fixed broken feature test
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
-rw-r--r--features/steps/admin/settings.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/admin/settings.rb b/features/steps/admin/settings.rb
index 1c0b7a4b712..147a4bd7486 100644
--- a/features/steps/admin/settings.rb
+++ b/features/steps/admin/settings.rb
@@ -11,9 +11,9 @@ class Spinach::Features::AdminSettings < Spinach::FeatureSteps
end
step 'I should see application settings saved' do
- expect(current_application_settings.gravatar_enabled).to be_false
- expect(current_application_settings.home_page_url).to eq 'https://about.gitlab.com/'
- expect(page).to have_content 'Application settings saved successfully'
+ expect(current_application_settings.gravatar_enabled).to be_falsey
+ expect(current_application_settings.home_page_url).to eq "https://about.gitlab.com/"
+ expect(page).to have_content "Application settings saved successfully"
end
step 'I click on "Service Templates"' do