Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIRC-2198 Implement the code for the feature UXPROD-5001 #1521

Merged
merged 13 commits into from
Dec 16, 2024
Merged
Prev Previous commit
Next Next commit
UXPROD-5001 sonar
  • Loading branch information
AntonAntonich committed Dec 16, 2024
commit 7cc7e4637845ac1b25ef25342f4b1a7f97edbee3
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class RequestNoticeSenderTest {
void shouldNotSendNotificationWhenIsDcbCancellationTrue() {
JsonObject representation = new RequestBuilder().create();
representation.put("isDcbReRequestCancellation", true);
// try to send notification
requestNoticeSender.sendNoticeOnRequestCancelled(
new RequestAndRelatedRecords(Request.from(representation)));
Mockito.verify(immediatePatronNoticeService, times(0)).acceptNoticeEvent(any());
Expand Down
Loading