From 6abc0b43f503751e418402a63156daa431a88911 Mon Sep 17 00:00:00 2001 From: Don Shin Date: Sun, 1 Dec 2024 19:32:49 -0600 Subject: [PATCH] unit test update --- modules/ivc_champva/spec/services/pdf_stamper_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/ivc_champva/spec/services/pdf_stamper_spec.rb b/modules/ivc_champva/spec/services/pdf_stamper_spec.rb index 7ee05281a3e..dd79761f8fd 100644 --- a/modules/ivc_champva/spec/services/pdf_stamper_spec.rb +++ b/modules/ivc_champva/spec/services/pdf_stamper_spec.rb @@ -98,7 +98,9 @@ let(:config) { nil } it 'raises an error' do - expect { verified_multistamp }.to raise_error('The provided stamp content was empty.') + expect do + verified_multistamp + end.to raise_error('An error occurred while verifying multistamp stamp: The provided stamp content was empty.') end end end