Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Mar 6, 2024
1 parent 8a25ff3 commit 85daa5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dart/test/sentry_tracer_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,9 @@ void main() {
final childB = sut.startChild('operation-b', description: 'description');
final childC = sut.startChild('operation-c', description: 'description');

await childA.finish(endTimestamp: childEnd1);
await childB.finish(endTimestamp: childEnd2);
await childC.finish(endTimestamp: childEnd3);
await childA.finish(endTimestamp: childAEnd);
await childB.finish(endTimestamp: childBEnd);
await childC.finish(endTimestamp: childCEnd);

await sut.finish(endTimestamp: rootEndInitial);

Expand Down

0 comments on commit 85daa5c

Please sign in to comment.