Merge pull request #1176 from apernet/fix-test-reqhook

fix(test): signature mismatch of udpIO.Hook
This commit is contained in:
Toby 2024-08-04 15:05:05 -07:00 committed by GitHub
commit 442ee3898c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ func TestUDPSessionManager(t *testing.T) {
}
return m, nil
})
io.EXPECT().Hook(mock.Anything, mock.Anything).Return(nil, nil)
io.EXPECT().Hook(mock.Anything, mock.Anything).Return(nil)
go sm.Run()