From 3be19a58fb1d81eb25b926b13bc028705d929d05 Mon Sep 17 00:00:00 2001 From: Clement Date: Sat, 7 Sep 2024 07:11:26 +0800 Subject: [PATCH] fix: incorect zip file --- tests/e2e/run_binary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/run_binary_test.go b/tests/e2e/run_binary_test.go index eadeea9..56add10 100644 --- a/tests/e2e/run_binary_test.go +++ b/tests/e2e/run_binary_test.go @@ -48,7 +48,7 @@ func TestRunBinary(t *testing.T) { Description("Get favicon.ico: "+url), Get(url), Expect().Status().Equal(http.StatusOK), - Expect().Headers("content-type").Equal("image/x-icon"), + Expect().Headers("content-type").Contains("image"), Expect().Body().Bytes().Len().GreaterThan(0), ) }