From fbe84bcbb85ddc1cde327faf382ef358e4c328e3 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Mon, 18 Apr 2022 20:33:56 +0100 Subject: Use 42 status code for CGI errors --- server/test/src/handlers/GeminiHandlerSpec.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/test/src') diff --git a/server/test/src/handlers/GeminiHandlerSpec.scala b/server/test/src/handlers/GeminiHandlerSpec.scala index f3545a0..f6da826 100644 --- a/server/test/src/handlers/GeminiHandlerSpec.scala +++ b/server/test/src/handlers/GeminiHandlerSpec.scala @@ -403,7 +403,7 @@ class GeminiHandlerSpec extends AnyFlatSpec with Matchers { .asInstanceOf[Cgi] val meta = "Error executing CGI" - bad.status should be(50) + bad.status should be(42) bad.meta should be(meta) bad.body should include(meta) } @@ -414,7 +414,7 @@ class GeminiHandlerSpec extends AnyFlatSpec with Matchers { .asInstanceOf[Cgi] val meta = "Error executing CGI" - bad.status should be(50) + bad.status should be(42) bad.meta should be(meta) bad.body should include(meta) } @@ -425,7 +425,7 @@ class GeminiHandlerSpec extends AnyFlatSpec with Matchers { .asInstanceOf[Cgi] val meta = "Invalid response from CGI" - bad.status should be(40) + bad.status should be(42) bad.meta should be(meta) bad.body should include(meta) } -- cgit v1.2.3