From b3fb85804d3708b14670c70fdcc00fea757d983c Mon Sep 17 00:00:00 2001 From: Shelikhoo Date: Wed, 23 Jun 2021 10:27:32 +0100 Subject: [PATCH] fix CI test issue --- testing/scenarios/vmess_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testing/scenarios/vmess_test.go b/testing/scenarios/vmess_test.go index 3de566419..dff403163 100644 --- a/testing/scenarios/vmess_test.go +++ b/testing/scenarios/vmess_test.go @@ -1300,7 +1300,7 @@ func TestVMessGCMLengthAuth(t *testing.T) { userID := protocol.NewID(uuid.New()) serverPort := tcp.PickPort() serverConfig := &core.Config{ - App: []*serial.TypedMessage{ + App: []*anypb.Any{ serial.ToTypedMessage(&log.Config{ ErrorLogLevel: clog.Severity_Debug, ErrorLogType: log.LogType_Console, @@ -1333,7 +1333,7 @@ func TestVMessGCMLengthAuth(t *testing.T) { clientPort := tcp.PickPort() clientConfig := &core.Config{ - App: []*serial.TypedMessage{ + App: []*anypb.Any{ serial.ToTypedMessage(&log.Config{ ErrorLogLevel: clog.Severity_Debug, ErrorLogType: log.LogType_Console, @@ -1407,7 +1407,7 @@ func TestVMessGCMLengthAuthPlusNoTerminationSignal(t *testing.T) { userID := protocol.NewID(uuid.New()) serverPort := tcp.PickPort() serverConfig := &core.Config{ - App: []*serial.TypedMessage{ + App: []*anypb.Any{ serial.ToTypedMessage(&log.Config{ ErrorLogLevel: clog.Severity_Debug, ErrorLogType: log.LogType_Console, @@ -1441,7 +1441,7 @@ func TestVMessGCMLengthAuthPlusNoTerminationSignal(t *testing.T) { clientPort := tcp.PickPort() clientConfig := &core.Config{ - App: []*serial.TypedMessage{ + App: []*anypb.Any{ serial.ToTypedMessage(&log.Config{ ErrorLogLevel: clog.Severity_Debug, ErrorLogType: log.LogType_Console,