From 567acb11940ae2c93369ee0a133eb85502c8091e Mon Sep 17 00:00:00 2001 From: Patrick <dreamlike.sky@foxmail.com> Date: Fri, 31 Jan 2020 12:18:01 +0800 Subject: [PATCH] modify test --- protocol/rest/rest_protocol_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/rest/rest_protocol_test.go b/protocol/rest/rest_protocol_test.go index 739f00b86..20417f757 100644 --- a/protocol/rest/rest_protocol_test.go +++ b/protocol/rest/rest_protocol_test.go @@ -94,6 +94,7 @@ func TestJsonrpcProtocol_Export(t *testing.T) { fmt.Println(url.Path) _, ok := proto.(*RestProtocol).ExporterMap().Load(strings.TrimPrefix(url.Path, "/")) assert.True(t, ok) + exporter.Unexport() _, ok = proto.(*RestProtocol).ExporterMap().Load(strings.TrimPrefix(url.Path, "/")) assert.False(t, ok) -- GitLab