Tests[SendWithPriority]

This commit is contained in:
2022-11-30 21:39:14 +01:00
parent a7df476e79
commit 1ca09c16d3
7 changed files with 172 additions and 4 deletions

View File

@@ -147,8 +147,15 @@ func TestFailErr(t *testing.T, e error) {
}
func unpointer(v any) any {
if v == nil {
return v
}
val := reflect.ValueOf(v)
if val.Kind() == reflect.Ptr {
if val.IsNil() {
return v
}
val = val.Elem()
return unpointer(val.Interface())
}