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
path: root/spec/lib
diff options
context:
space:
mode:
authorGeorge Koltsov <gkoltsov@gitlab.com>2019-08-08 12:26:37 +0300
committerGeorge Koltsov <gkoltsov@gitlab.com>2019-08-08 15:16:33 +0300
commitba429a6e2023242a55f9199b1381ac331cc92e1c (patch)
tree9f02ca8e7bf79e27962419a2d4d58c1871aa5978 /spec/lib
parent9baa7ee14f1e404b1e3ba74512fd2fc026c70276 (diff)
Apply code review feedback
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/bitbucket_import/importer_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/bitbucket_import/importer_spec.rb b/spec/lib/gitlab/bitbucket_import/importer_spec.rb
index 56ccd899cc6..3d0d3f91859 100644
--- a/spec/lib/gitlab/bitbucket_import/importer_spec.rb
+++ b/spec/lib/gitlab/bitbucket_import/importer_spec.rb
@@ -184,11 +184,11 @@ describe Gitlab::BitbucketImport::Importer do
notes = merge_request.notes.order(:id).to_a
start_note = notes.first
- expect(start_note.note).to include(@inline_note.note)
+ expect(start_note.note).to eq(@inline_note.note)
expect(start_note.note).not_to include(author_line)
reply_note = notes.last
- expect(reply_note.note).to include(@reply.note)
+ expect(reply_note.note).to eq(@reply.note)
expect(reply_note.note).not_to include(author_line)
end
end