summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-18 20:48:02 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-18 20:48:02 +0200
commita718a9af3e9a4f7431cab066fc81f3311f9fe639 (patch)
treef350ec5d6dd06012ffec939c1d0dd7b7abb7ade7 /features
parent638f8541dcd4a718e0c8187bb1dd4dfddffeb57d (diff)
downloadgitlab-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.rb6
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