From 4e501dee651e8a3d9e12d06ddb66f5a3ee271ee4 Mon Sep 17 00:00:00 2001 From: Patrick <dreamlike.sky@foxmail.com> Date: Sun, 23 Feb 2020 12:01:38 +0800 Subject: [PATCH] split import --- .../rest/rest_config_reader/default_config_reader_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/protocol/rest/rest_config_reader/default_config_reader_test.go b/protocol/rest/rest_config_reader/default_config_reader_test.go index 5990c5314..ec5384871 100644 --- a/protocol/rest/rest_config_reader/default_config_reader_test.go +++ b/protocol/rest/rest_config_reader/default_config_reader_test.go @@ -23,10 +23,13 @@ import ( ) import ( - "github.com/apache/dubbo-go/common/constant" "github.com/stretchr/testify/assert" ) +import ( + "github.com/apache/dubbo-go/common/constant" +) + func TestDefaultConfigReader_ReadConsumerConfig(t *testing.T) { err := os.Setenv(constant.CONF_CONSUMER_FILE_PATH, "./testdata/consumer_config.yml") assert.NoError(t, err) -- GitLab