Skip to content

Commit

Permalink
fix unit test assumption
Browse files Browse the repository at this point in the history
  • Loading branch information
thjaeckle committed Jan 9, 2025
1 parent a54058b commit afdb2cb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ public Route createRoute() {
.containsEntry("foo", fooHeaderValue)
.containsKeys(W3C_TRACEPARENT.getKey(), W3C_TRACESTATE.getKey())
.containsValue(tracestateHeaderValue)
.containsValue(traceparentHeaderValue));
.doesNotContainValue(traceparentHeaderValue) // it must explicitly contain another trace parent instead
);
}

}

0 comments on commit afdb2cb

Please sign in to comment.