Skip to content

Commit

Permalink
Remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKunz committed Nov 22, 2024
1 parent da27de3 commit bfeb539
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public void checkInferredSpansFunctional() {
.anySatisfy(
span -> assertThat(span).hasName("InferredSpansTest.childSpan"));

System.out.println("checking inferred span");
SpanData parent =
spans.stream()
.filter(
Expand Down Expand Up @@ -90,8 +89,8 @@ public void checkInferredSpansFunctional() {
.anySatisfy(
link -> {
assertThat(
link.getSpanContext()
.getSpanId())
link.getSpanContext()
.getSpanId())
.isEqualTo(child.getSpanId());
assertThat(link.getAttributes())
.containsEntry("is_child", true)
Expand Down

0 comments on commit bfeb539

Please sign in to comment.