From 2ac7ee590f45f832af4cccbb0079ebeb7e194432 Mon Sep 17 00:00:00 2001 From: Kat Date: Wed, 14 Aug 2024 16:49:30 +0100 Subject: [PATCH] update test --- spec/views/merge_requests/show.html.erb_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/views/merge_requests/show.html.erb_spec.rb b/spec/views/merge_requests/show.html.erb_spec.rb index 72974fc9e..0e52e3f58 100644 --- a/spec/views/merge_requests/show.html.erb_spec.rb +++ b/spec/views/merge_requests/show.html.erb_spec.rb @@ -1,7 +1,7 @@ require "rails_helper" RSpec.describe "merge_requests/show.html.erb", type: :view do - let(:absorbing_organisation) { create(:organisation, name: "Absorbing Org") } + let(:absorbing_organisation) { create(:organisation, name: "Absorbing Org", with_dsa: false) } let(:dpo_user) { create(:user, name: "DPO User", is_dpo: true, organisation: absorbing_organisation) } let(:merge_request) { create(:merge_request, absorbing_organisation_id: absorbing_organisation.id, signed_dsa: false, status: 1) }