Fix build (merge conflict) (#7559)

Resolves #7558
This commit is contained in:
Mateusz Rzeszutek 2023-01-12 17:12:44 +01:00 committed by GitHub
parent fb5cf9fd97
commit fadd29fa90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class TestWebSpringBootApp {
return controller(
INDEXED_CHILD,
() -> {
INDEXED_CHILD.collectSpanAttributes(name -> "id".equals(name) ? id : null);
INDEXED_CHILD.collectSpanAttributes(name -> name.equals("id") ? id : null);
return INDEXED_CHILD.getBody();
});
}