Skip to content

Commit

Permalink
add test debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
emerkle826 committed Apr 15, 2024
1 parent cace94a commit 4962db7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,9 @@ public void theReturnedListOfSubscriptionsIs(List<Map<String, String>> subscript
.collect(Collectors.toList());

Assertions.assertThat(testContext.getRetrievedEventSubscriptions().size()).isEqualTo(expected.size());

testContext.getRetrievedEventSubscriptions().forEach(sub -> {
LOG.warn("DEBUG DEBUG: DiagEventSubscription:\n{}", java.util.Objects.toString(sub));
});
List<DiagEventSubscription> lastRetrieved = testContext.getRetrievedEventSubscriptions()
.stream()
.map(s ->
Expand Down

0 comments on commit 4962db7

Please sign in to comment.