From b80bf73b6d15b31624bd1516b563865651b688f6 Mon Sep 17 00:00:00 2001 From: Kaneko Yuto Date: Fri, 9 Feb 2024 14:05:44 +0900 Subject: [PATCH] Fix rack response --- test/servers/redirect_without_location.ru | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/servers/redirect_without_location.ru b/test/servers/redirect_without_location.ru index 7e630e1..0722a04 100644 --- a/test/servers/redirect_without_location.ru +++ b/test/servers/redirect_without_location.ru @@ -1,6 +1,6 @@ class ProxyTestServer def call(env) - [302, {"Content-Type" => "image/foo"}, "test"] + [302, {"Content-Type" => "image/png"}, ["test"]] end end