Skip to content
This repository was archived by the owner on Nov 7, 2022. It is now read-only.

Commit 73e5642

Browse files
author
Bogdan Drutu
authored
Fix format error in tests. (#405)
1 parent a421e15 commit 73e5642

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/collector/processor/nodebatcher/node_batcher_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ func TestConcurrentBatchAdds(t *testing.T) {
239239
t.Errorf("failed to wait for sender %s", err)
240240
}
241241
if len(sender.spansReceivedByName) != requestCount*spansPerRequest {
242-
t.Errorf("Did not receive the correct number of spans. %d != %d", sender.spansReceivedByName, requestCount*spansPerRequest)
242+
t.Errorf("Did not receive the correct number of spans. %d != %d", len(sender.spansReceivedByName), requestCount*spansPerRequest)
243243
}
244244

245245
for requestNum := 0; requestNum < requestCount; requestNum++ {

0 commit comments

Comments
 (0)