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:
authorGabriel Gizotti <gabriel@gizotti.com>2016-11-24 23:49:56 +0300
committerGabriel Gizotti <gabriel@gizotti.com>2016-12-16 12:13:17 +0300
commit0e76daf3da35920d10053dc4d8707e1b6aa7c913 (patch)
tree01a9edced661763e10839ae26c04afbb8704a755 /spec/models/merge_request_spec.rb
parentc1515cd865ec11110f9b34c41a41747dcbc3b402 (diff)
only look for issues mentioned on description on MergeRequest#issues_mentioned_but_not_closing
Diffstat (limited to 'spec/models/merge_request_spec.rb')
-rw-r--r--spec/models/merge_request_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/merge_request_spec.rb b/spec/models/merge_request_spec.rb
index 688c78fb404..b2c26874552 100644
--- a/spec/models/merge_request_spec.rb
+++ b/spec/models/merge_request_spec.rb
@@ -294,7 +294,7 @@ describe MergeRequest, models: true do
end
end
- it 'detects issues mentioned but not closed' do
+ it 'detects issues mentioned in description but not closed' do
mentioned_issue = create(:issue, project: subject.project)
subject.description = "Is related to #{mentioned_issue.to_reference}"