From e465b5bd176912d3f421f263c317d6827935da19 Mon Sep 17 00:00:00 2001 From: JIeJaitt <498938874@qq.com> Date: Sun, 13 Oct 2024 00:27:31 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix:=20Remove=20the=20default=20?= =?UTF-8?q?Case?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_test.go b/app_test.go index 20286d34fa..49daaf99c8 100644 --- a/app_test.go +++ b/app_test.go @@ -912,7 +912,7 @@ func Test_App_ShutdownWithContext(t *testing.T) { select { case err := <-serverErr: assert.NoError(t, err, "Server should have shut down without error") - default: + // default: // Server is still running, which is expected as the long-running request prevented full shutdown } }