From 2fb9876ebdb8af9ebc5c36ffd80f259dbb4c12b5 Mon Sep 17 00:00:00 2001 From: Meo597 <197331664+Meo597@users.noreply.github.com> Date: Sat, 7 Jun 2025 21:19:04 +0800 Subject: [PATCH] fix build --- testing/scenarios/command_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/scenarios/command_test.go b/testing/scenarios/command_test.go index 7e731b5b..c7914752 100644 --- a/testing/scenarios/command_test.go +++ b/testing/scenarios/command_test.go @@ -287,7 +287,7 @@ func TestCommanderListHandlers(t *testing.T) { } if diff := cmp.Diff(inboundResp.Inbounds, clientConfig.Inbound, protocmp.Transform()); diff != "" { - t.Fatal("inbound response doesn't match config (-want +got):\n%s", diff) + t.Fatalf("inbound response doesn't match config (-want +got):\n%s", diff) } outboundResp, err := hsClient.ListOutbounds(context.Background(), &command.ListOutboundsRequest{}) @@ -297,7 +297,7 @@ func TestCommanderListHandlers(t *testing.T) { } if diff := cmp.Diff(outboundResp.Outbounds, clientConfig.Outbound, protocmp.Transform()); diff != "" { - t.Fatal("outbound response doesn't match config (-want +got):\n%s", diff) + t.Fatalf("outbound response doesn't match config (-want +got):\n%s", diff) } }