summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2016-10-19 20:41:04 +0000
committerRémy Coutable <remy@rymai.me>2016-10-20 16:39:27 +0200
commitc8b2b3f7c32db873f1bebce3e3b1847ea24d235f (patch)
treea8ee49b217785070d9eb88705f0fdd0b1a51bd90 /features
parent52a38f907dfc0b0ae675faa90371cb7db87221bf (diff)
downloadgitlab-ce-c8b2b3f7c32db873f1bebce3e3b1847ea24d235f.tar.gz
Merge branch 'feature/group-level-labels' into 'master'
Add group level labels. * `LabelsFinder` * `Gitlab::Gfm::ReferenceRewriter` * `Banzai::Filter::LabelReferenceFilter` We'll be adding more feature that allow you to do cross-project management of issues. loses #19997 See merge request !6425 Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/issues/labels.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/issues/labels.rb b/features/steps/project/issues/labels.rb
index 2937d5d7ca8..f74a9b5df47 100644
--- a/features/steps/project/issues/labels.rb
+++ b/features/steps/project/issues/labels.rb
@@ -8,7 +8,7 @@ class Spinach::Features::ProjectIssuesLabels < Spinach::FeatureSteps
end
step 'I remove label \'bug\'' do
- page.within "#label_#{bug_label.id}" do
+ page.within "#project_label_#{bug_label.id}" do
first(:link, 'Delete').click
end
end