Skip to content

Commit

Permalink
use the root flag enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
simont1 committed Apr 12, 2024
1 parent d7c2086 commit 7d42883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/new-e2e/tests/apm/tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func testIsTraceRootTag(t *testing.T, c *assert.CollectT, intake *components.Fak
for _, b := range s.Stats {
for _, cs := range b.Stats {
t.Logf("Got IsTraceRoot: %v", cs.GetIsTraceRoot())
assert.Equal(t, "true", cs.GetIsTraceRoot())
assert.Equal(t, trace.TraceRootFlag_TRUE, cs.GetIsTraceRoot())
}
}
}
Expand Down

0 comments on commit 7d42883

Please sign in to comment.