We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebaae10 commit 7e508edCopy full SHA for 7e508ed
fluent/fluent_test.go
@@ -118,7 +118,7 @@ func Test_New_itShouldUseUnixDomainSocketIfUnixSocketSpecified(t *testing.T) {
118
fUnknown, err := New(Config{
119
FluentNetwork: network,
120
FluentSocketPath: socketFile})
121
- if _, ok := err.(net.UnknownNetworkError); !ok {
+ if _, ok := err.(*ErrUnknownNetwork); !ok {
122
t.Errorf("err type: %T", err)
123
}
124
if err == nil {
0 commit comments