[chore] Remove fmt.Printf from test (#13233)

Just fixes a small remnant from debugging(!?).
This commit is contained in:
Tim Rühsen 2025-06-18 18:45:06 +02:00 committed by GitHub
parent 8d718818ba
commit 8af46bc73e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -97,7 +97,6 @@ func testPutAttribute(t *testing.T, record attributable) {
// Put an attribute, same key, different value. // Put an attribute, same key, different value.
// This updates the index and adds to the table. // This updates the index and adds to the table.
fmt.Printf("test\n")
require.NoError(t, PutAttribute(table, record, "hello", pcommon.NewValueStr("world2"))) require.NoError(t, PutAttribute(table, record, "hello", pcommon.NewValueStr("world2")))
assert.Equal(t, 2, table.Len()) assert.Equal(t, 2, table.Len())
assert.Equal(t, []int32{1}, record.AttributeIndices().AsRaw()) assert.Equal(t, []int32{1}, record.AttributeIndices().AsRaw())