test: fix typo (#1790)

This commit is contained in:
Oleksandr Redko
2024-06-10 20:08:51 +03:00
committed by GitHub
parent 2909827c57
commit 9ffdf086e7
+1 -1
View File
@@ -48,7 +48,7 @@ func Test_New(t *testing.T) {
p := New(s)
if p.Network != defaultNetwork {
t.Errorf("Prefork.Netork == %q, want %q", p.Network, defaultNetwork)
t.Errorf("Prefork.Network == %q, want %q", p.Network, defaultNetwork)
}
if reflect.ValueOf(p.ServeFunc).Pointer() != reflect.ValueOf(s.Serve).Pointer() {