Skip to content

Commit

Permalink
fix: Make Adaptations on Unit Tests switch Social API Change - MEED-7…
Browse files Browse the repository at this point in the history
…814 - Meeds-io/MIPs#160

This change ensures to mock the space using a Long id instead of text.
  • Loading branch information
boubaker committed Nov 15, 2024
1 parent e0fcfc1 commit 3e95ac3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void toRestEntities() throws Exception {
StatusService statusService = mock(StatusService.class);
List<WorkFlow> workFlows = new ArrayList<>();
Space space = new Space();
space.setId("test");
space.setId("12");
space.setPrettyName("test");
space.setDisplayName("test");
WorkFlow workFlow = new WorkFlow();
Expand Down

0 comments on commit 3e95ac3

Please sign in to comment.