Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Aug 29, 2024
1 parent decce21 commit 689b2e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import io.opentelemetry.instrumentation.testing.junit.InstrumentationExtension;
import io.opentelemetry.javaagent.instrumentation.spring.batch.v3_0.runner.JobRunner;
import io.opentelemetry.sdk.testing.assertj.TraceAssert;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;

Expand Down Expand Up @@ -73,7 +72,6 @@ void shouldBeAbleToCallSpanCurrentAndAddCustomInfoToSpans() {
.hasParent(trace.getSpan(1))
.satisfies(
spanData -> {

// CompositeChunkListener has broken ordering that causes
// listeners that do not override order() to appear first at all
// times
Expand All @@ -86,7 +84,7 @@ void shouldBeAbleToCallSpanCurrentAndAddCustomInfoToSpans() {
event -> event.hasName("chunk.before"),
event -> event.hasName("chunk.after"));
} else {
Assertions.assertThat(spanData.getEvents()).isEmpty();
assertThat(spanData.getEvents()).isEmpty();
}
}),
span -> {}, // ignore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void shouldTraceItemReadProcessAndWriteCalls() {
}

@Override
void shouldTraceAllItemOperationsOnAParallelItemsJob() {
void shouldTraceAllItemOperationsOnAparallelItemsJob() {
// does not work - not sure why
}
}

0 comments on commit 689b2e5

Please sign in to comment.