Skip to content

Commit

Permalink
chore: Fix failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
en-milie committed Oct 22, 2024
1 parent 2b496fd commit 0666bb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ void shouldAvoidCyclicDependenciesOnAdditionalProperties() throws Exception {
Assertions.assertThat(dataList).hasSize(1);
Assertions.assertThat(dataList.getFirst().getMethod()).isEqualTo(HttpMethod.POST);
String payload = dataList.getFirst().getPayload();
Object existing = JsonUtils.getVariableFromJson(payload, "$.containers#key#containers#key#containers#key#containers#key#containers#key#containers");
Object existing = JsonUtils.getVariableFromJson(payload, "$.containers#key#containers#key#containers#key#containers#key#containers");
Object nonExisting = JsonUtils.getVariableFromJson(payload, "$.containers#key#containers#key#containers#key#containers#key#containers#key#containers#key");

Assertions.assertThat(existing).hasToString("{}");
Expand Down

0 comments on commit 0666bb4

Please sign in to comment.