Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2018-11-06 19:31:32 +0300
committerRobert Speicher <robert@gitlab.com>2018-11-06 19:31:32 +0300
commit992cff9c72f3942e7475dbbf4966fa438aaeb6af (patch)
tree92c0e318d64084718602ac6909b4cd586a179ade /spec/support/shared_examples
parentd0c58a97c8a053c0beec7c13c1c6ec5042120ef1 (diff)
parentaf87e40a7814e97a5bb63fc354e1a7b6194a3052 (diff)
Merge branch 'ccr/51052_keep_labels_on_issue' into 'master'
Fixed label removal from issue Closes #51052 See merge request gitlab-org/gitlab-ce!22762
Diffstat (limited to 'spec/support/shared_examples')
-rw-r--r--spec/support/shared_examples/services/boards/issues_move_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shared_examples/services/boards/issues_move_service.rb b/spec/support/shared_examples/services/boards/issues_move_service.rb
index 6d29a97c56d..ec44b99d10e 100644
--- a/spec/support/shared_examples/services/boards/issues_move_service.rb
+++ b/spec/support/shared_examples/services/boards/issues_move_service.rb
@@ -34,7 +34,7 @@ shared_examples 'issues move service' do |group|
described_class.new(parent, user, params).execute(issue)
issue.reload
- expect(issue.labels).to contain_exactly(bug)
+ expect(issue.labels).to contain_exactly(bug, regression)
expect(issue).to be_closed
end
end