diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-18 20:48:02 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-18 20:48:02 +0200 |
commit | a718a9af3e9a4f7431cab066fc81f3311f9fe639 (patch) | |
tree | f350ec5d6dd06012ffec939c1d0dd7b7abb7ade7 /features | |
parent | 638f8541dcd4a718e0c8187bb1dd4dfddffeb57d (diff) | |
download | gitlab-ce-a718a9af3e9a4f7431cab066fc81f3311f9fe639.tar.gz |
Restyle labels filter to match common style
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/project/project_filter_labels.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/project/project_filter_labels.rb b/features/steps/project/project_filter_labels.rb index d507d3417e4..5926d69d6c7 100644 --- a/features/steps/project/project_filter_labels.rb +++ b/features/steps/project/project_filter_labels.rb @@ -4,19 +4,19 @@ class ProjectFilterLabels < Spinach::FeatureSteps include SharedPaths Then 'I should see "bug" in labels filter' do - within ".list-group" do + within ".labels-filter" do page.should have_content "bug" end end And 'I should see "feature" in labels filter' do - within ".list-group" do + within ".labels-filter" do page.should have_content "feature" end end And 'I should see "enhancement" in labels filter' do - within ".list-group" do + within ".labels-filter" do page.should have_content "enhancement" end end |