Skip to content

Commit

Permalink
fix test for native
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Apr 29, 2024
1 parent 792a8dc commit d2cc50c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class OtelReactiveSpringStarterSmokeTest {

@RegisterExtension
static final SpringSmokeInstrumentationExtension testing =
SpringSmokeInstrumentationExtension.create();
SpringSmokeInstrumentationExtension.createWithoutAutomaticReset();

@LocalServerPort int serverPort;

Expand All @@ -65,6 +65,8 @@ void webClientAndWebFluxAndR2dbc() {
.blockLast();

testing.waitAndAssertTraces(
trace ->
trace.hasSpansSatisfyingExactly(span -> span.hasName("CREATE TABLE testdb.player")),
trace ->
trace.hasSpansSatisfyingExactly(
span ->
Expand Down

0 comments on commit d2cc50c

Please sign in to comment.