Skip to content

Commit

Permalink
fix lambda name
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Oct 8, 2023
1 parent 0c463bb commit 1154547
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void shouldExtractFullSpanNameForLambda() {
String spanName = underTest.extract(request);

// then
assertEquals(getClass().getSimpleName() + "$$Lambda$.doSomething", spanName);
assertEquals(getClass().getSimpleName() + "$$Lambda.doSomething", spanName);
}

static class TestClass {}
Expand Down

0 comments on commit 1154547

Please sign in to comment.