diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-01 22:56:56 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-01 22:56:56 +0200 |
commit | d1fdefeecdf9305f65a7b78bc0c2218f2dcd9956 (patch) | |
tree | 8192a4173db5c3b6f679e1b5584775f8f24f630b /spec/models | |
parent | 6e58e7ff7ce151fb7a8329faef69cd3a42194216 (diff) | |
parent | 0f96a6c25ad364b1ef945788c463653e93b18d96 (diff) | |
download | gitlab-ce-d1fdefeecdf9305f65a7b78bc0c2218f2dcd9956.tar.gz |
Merge remote-tracking branch 'origin/master' into downcase-registry-repository
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/commit_range_spec.rb | 5 | ||||
-rw-r--r-- | spec/models/note_spec.rb | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/spec/models/commit_range_spec.rb b/spec/models/commit_range_spec.rb index 6bc496414a3..384a38ebc69 100644 --- a/spec/models/commit_range_spec.rb +++ b/spec/models/commit_range_spec.rb @@ -151,9 +151,10 @@ describe CommitRange, models: true do issue = create(:issue) create(:note_on_issue, - noteable_id: issue.id, + noteable: issue, system: true, - note: commit1.revert_description) + note: commit1.revert_description, + project: issue.project) expect_any_instance_of(Commit).to receive(:reverts_commit?). with(commit1). diff --git a/spec/models/note_spec.rb b/spec/models/note_spec.rb index b25150f7055..e9d89c9a847 100644 --- a/spec/models/note_spec.rb +++ b/spec/models/note_spec.rb @@ -154,7 +154,7 @@ describe Note, models: true do context "confidential issues" do let(:user) { create :user } let(:confidential_issue) { create(:issue, :confidential, author: user) } - let(:confidential_note) { create :note, note: "Random", noteable: confidential_issue } + let(:confidential_note) { create :note, note: "Random", noteable: confidential_issue, project: confidential_issue.project } it "returns notes with matching content if user can see the issue" do expect(described_class.search(confidential_note.note, as_user: user)).to eq([confidential_note]) |