fix name in test

Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
This commit is contained in:
György Krajcsovits 2026-02-02 20:43:31 +01:00
parent edd8a9e7bb
commit cd76a2cec7
No known key found for this signature in database
GPG key ID: 47A8F9CE80FD7C7F

View file

@ -250,7 +250,7 @@ func foreachFmtSampleCase(b *testing.B, fn func(b *testing.B, f fmtCase, s sampl
for _, f := range []fmtCase{
{name: "XOR", newChunkFn: func() Chunk { return NewXORChunk() }, stUnsupported: true},
{name: "XOR_OPT_ST", newChunkFn: func() Chunk { return NewXORSTChunk() }},
{name: "XOR_ST", newChunkFn: func() Chunk { return NewXORSTChunk() }},
} {
for _, s := range sampleCases {
b.Run(fmt.Sprintf("fmt=%s/%s", f.name, s.name), func(b *testing.B) {