Skip to content

Commit

Permalink
fix: Fix Unit Test due to changed Space.Id to Long - Meeds-io/MIPs#160
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Nov 14, 2024
1 parent aeb028a commit 88197cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public void testSendKudosToSpace() {
kudosToSend.setReceiverId("space2");
assertThrows(IllegalAccessException.class, () -> kudosService.createKudos(kudosToSend, SENDER_REMOTE_ID));

kudosToSend.setReceiverId("NotFoundSpace");
kudosToSend.setReceiverId("NotFoundSpace0");
assertThrows(IllegalAccessException.class, () -> kudosService.createKudos(kudosToSend, SENDER_REMOTE_ID));

kudosToSend.setReceiverId(spaceRemoteId);
Expand Down

0 comments on commit 88197cf

Please sign in to comment.