diff options
| author | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:30:12 +0100 |
|---|---|---|
| committer | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:41:54 +0100 |
| commit | 67119e15c03d4d1e8abd2ce2cfe1b40aba35c709 (patch) | |
| tree | 12c895100dabb19bb795cc54d133a8823f5eaa90 /features/steps/admin | |
| parent | ed74fa73e227b9666f3f38f17b35a5cf8328fa44 (diff) | |
| download | gitlab-ce-67119e15c03d4d1e8abd2ce2cfe1b40aba35c709.tar.gz | |
Use consistent casing for form field labels
Diffstat (limited to 'features/steps/admin')
| -rw-r--r-- | features/steps/admin/labels.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/features/steps/admin/labels.rb b/features/steps/admin/labels.rb index b45d98658bc..cb23b869658 100644 --- a/features/steps/admin/labels.rb +++ b/features/steps/admin/labels.rb @@ -45,21 +45,21 @@ class Spinach::Features::AdminIssuesLabels < Spinach::FeatureSteps step 'I submit new label \'support\'' do visit new_admin_label_path fill_in 'Title', with: 'support' - fill_in 'Background Color', with: '#F95610' + fill_in 'Background color', with: '#F95610' click_button 'Save' end step 'I submit new label \'bug\'' do visit new_admin_label_path fill_in 'Title', with: 'bug' - fill_in 'Background Color', with: '#F95610' + fill_in 'Background color', with: '#F95610' click_button 'Save' end step 'I submit new label with invalid color' do visit new_admin_label_path fill_in 'Title', with: 'support' - fill_in 'Background Color', with: '#12' + fill_in 'Background color', with: '#12' click_button 'Save' end @@ -101,7 +101,7 @@ class Spinach::Features::AdminIssuesLabels < Spinach::FeatureSteps step 'I change label \'bug\' to \'fix\'' do fill_in 'Title', with: 'fix' - fill_in 'Background Color', with: '#F15610' + fill_in 'Background color', with: '#F15610' click_button 'Save' end |
