diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-09-08 14:43:41 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-09-08 14:43:41 +0100 |
commit | 260fcd45209b59ace6b3fd6dcca6c32c2c75a8f1 (patch) | |
tree | 0603fa0e33181c9a146af633f0fa00e7988b5660 /features | |
parent | d92696d39d10d1862e6235742897c94bc85ab8a4 (diff) | |
download | gitlab-ce-260fcd45209b59ace6b3fd6dcca6c32c2c75a8f1.tar.gz |
Consistently case `Back to X` links.
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/groups.rb | 2 | ||||
-rw-r--r-- | features/steps/project/project.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/groups.rb b/features/steps/groups.rb index 18a1c4d32ce..a5c2eed4ddd 100644 --- a/features/steps/groups.rb +++ b/features/steps/groups.rb @@ -6,7 +6,7 @@ class Spinach::Features::Groups < Spinach::FeatureSteps include Select2Helper step 'I should see back to dashboard button' do - expect(page).to have_content 'Back to Dashboard' + expect(page).to have_content 'Back to dashboard' end step 'gitlab user "Mike"' do diff --git a/features/steps/project/project.rb b/features/steps/project/project.rb index 0404fd5e594..079a190e356 100644 --- a/features/steps/project/project.rb +++ b/features/steps/project/project.rb @@ -124,10 +124,10 @@ class Spinach::Features::Project < Spinach::FeatureSteps end step 'I should see back to dashboard button' do - expect(page).to have_content 'Back to Dashboard' + expect(page).to have_content 'Back to dashboard' end step 'I should see back to group button' do - expect(page).to have_content 'Back to Group' + expect(page).to have_content 'Back to group' end end |