Skip to content

Commit

Permalink
fix: add missing request body
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasM95 committed May 25, 2024
1 parent 2507a47 commit 4cab430
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ public void stopVentilator() throws Exception {
Mockito.when(client.stopVentilator(eq(uri), eq("QMGAG8BEQSY003476"), ventilatorRequestResourceArgumentCaptor.capture())).thenReturn(ventilatorResponseResource);

String request = """
{}""";
{
"duration": 0,
"pin": "1111"
}""";

String response = """
{"id":"123","vin":"QMGAG8BEQSY003476"}""";

Expand Down

0 comments on commit 4cab430

Please sign in to comment.