Skip to content

Commit

Permalink
HttpServiceTaskTest#testDeleteResponseEmptyBody: Make test pass with …
Browse files Browse the repository at this point in the history
…Jackson 2.10
  • Loading branch information
PascalSchumacher committed Sep 20, 2019
1 parent b79f1a4 commit 99d37f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public void testArrayNodeResponse() {
public void testDeleteResponseEmptyBody() {
String processInstanceId = runtimeService.startProcessInstanceByKey("testDeleteResponse").getId();
assertTrue(runtimeService.hasVariable(processInstanceId, "myResponse"));
assertNull(runtimeService.getVariable(processInstanceId, "myResponse"));
assertEquals("null", runtimeService.getVariable(processInstanceId, "myResponse"));
}

@Test
Expand Down

0 comments on commit 99d37f5

Please sign in to comment.