Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Feb 23, 2021
1 parent ff9925f commit 8b9c001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"connectionString": "InstrumentationKey=00000000-0000-0000-0000-0FEEDDADBEEF;IngestionEndpoint=http://fakeingestion:6060/",
"instrumentation": {
"spring-scheduling": {
"springScheduling": {
"enabled": false
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ public void doMostBasicTest() throws Exception {
assertEquals("greetings", rd2.getSource());
assertEquals("greetings process", rd2.getName());

assertParentChild(rdd1.getId(), rdEnvelope1, rddEnvelope2);
assertParentChild(rdd2.getId(), rddEnvelope1, rdEnvelope2);
assertParentChild(rd1.getId(), rdEnvelope1, rddEnvelope1);
assertParentChild(rdd1.getId(), rddEnvelope1, rddEnvelope2);
assertParentChild(rdd2.getId(), rddEnvelope2, rdEnvelope2);
}

private static void assertParentChild(String parentId, Envelope parentEnvelope, Envelope childEnvelope) {
Expand Down

0 comments on commit 8b9c001

Please sign in to comment.