diff options
| author | Robert Speicher <rspeicher@gmail.com> | 2015-06-18 22:13:32 -0400 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-22 12:13:45 +0200 |
| commit | afec5efc7dd0d0a063c30c3fff5ea5bbf59f9f48 (patch) | |
| tree | 24a40ef59222c3c8e82eb8cbd4220e10e0c0e8d3 /features/steps/admin/settings.rb | |
| parent | d6cd2e6a53aca48f76296cd6b89b0f2b41b641ed (diff) | |
| download | gitlab-ce-afec5efc7dd0d0a063c30c3fff5ea5bbf59f9f48.tar.gz | |
Fix features syntax
Diffstat (limited to 'features/steps/admin/settings.rb')
| -rw-r--r-- | features/steps/admin/settings.rb | 6 |
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 |
