diff options
author | Chantal Rollison <crollison@gitlab.com> | 2018-11-01 17:10:53 -0700 |
---|---|---|
committer | Chantal Rollison <crollison@gitlab.com> | 2018-11-05 06:22:19 -0800 |
commit | af87e40a7814e97a5bb63fc354e1a7b6194a3052 (patch) | |
tree | 383ea0b820415ce747646d9ee6c059684c5f5afe /spec/support | |
parent | 74b5dce44aa902364d7ff3a3d8f6a1fcd857993d (diff) | |
download | gitlab-ce-af87e40a7814e97a5bb63fc354e1a7b6194a3052.tar.gz |
Fixed label removal from issueccr/51052_keep_labels_on_issue
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/shared_examples/services/boards/issues_move_service.rb | 2 |
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 |