Browse Source

fix test break

pull/812/head
Darien Raymond 7 years ago
parent
commit
ec54b04537
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 6
      transport/internet/udp/dispatcher_test.go

6
transport/internet/udp/dispatcher_test.go

@ -21,6 +21,12 @@ func (d *TestDispatcher) Dispatch(ctx context.Context, dest net.Destination) (ra
return d.OnDispatch(ctx, dest)
}
func (d *TestDispatcher) Start() error {
return nil
}
func (d *TestDispatcher) Close() {}
func TestSameDestinationDispatching(t *testing.T) {
assert := With(t)

Loading…
Cancel
Save