replace wrappers with hooks #339

Merged
vtolstov merged 2 commits from hooks into v3 2024-04-22 08:50:55 +03:00
Showing only changes of commit 3a21069b86 - Show all commits

View File

@ -1,13 +0,0 @@
package tracer
import (
"testing"
)
func TestUniqLabels(t *testing.T) {
labels := []interface{}{"key1", "val1", "key1", "val2"}
labels = UniqLabels(labels)
if labels[1] != "val2" {
t.Fatalf("UniqLabels not works")
}
}