Skip to content

Commit

Permalink
better fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grcevski committed Dec 6, 2024
1 parent 12dc439 commit f50b92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/php_fm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func testHTTPTracesPHP(t *testing.T) {
require.NoError(t, json.NewDecoder(resp.Body).Decode(&tq))
traces := tq.FindBySpan(jaeger.Tag{Key: "url.path", Type: "string", Value: "/"})
require.GreaterOrEqual(t, len(traces), 1)
trace = traces[0]
trace = traces[len(traces)-1]

// Check the information of the parent span
res := trace.FindByOperationNameAndService("GET /", "nginx")
Expand Down

0 comments on commit f50b92b

Please sign in to comment.