1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

fix test break

This commit is contained in:
Darien Raymond 2018-01-10 13:07:56 +01:00
parent e4554e5871
commit ec54b04537
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -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)