summaryrefslogtreecommitdiff
path: root/spec/services/notes/copy_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/notes/copy_service_spec.rb')
-rw-r--r--spec/services/notes/copy_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/notes/copy_service_spec.rb b/spec/services/notes/copy_service_spec.rb
index fd44aa7cf40..d9b6bafd7ff 100644
--- a/spec/services/notes/copy_service_spec.rb
+++ b/spec/services/notes/copy_service_spec.rb
@@ -7,7 +7,7 @@ RSpec.describe Notes::CopyService do
let_it_be(:noteable) { create(:issue) }
it 'validates that we cannot copy notes to the same Noteable' do
- expect { described_class.new(noteable, noteable) }.to raise_error(ArgumentError)
+ expect { described_class.new(nil, noteable, noteable) }.to raise_error(ArgumentError)
end
end