Skip to content

Commit

Permalink
[#noissue] fix test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
dwkang committed Nov 11, 2024
1 parent 3dfd55d commit 1fcb5c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion span_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ func Test_span_NewSpanEvent(t *testing.T) {
assert.Equal(t, span.eventDepth, int32(2), "eventDepth")
assert.Equal(t, span.eventStack.len(), int(1), "stack.len")

se := span.spanEvents[0]
se, exist := span.eventStack.peek()
assert.Equal(t, exist, true, "eventStack.peek")
assert.Equal(t, se.operationName, tt.args.operationName, "operationName")
})
}
Expand Down

0 comments on commit 1fcb5c9

Please sign in to comment.