From 224e8f7db669aea25beab5890826305f2e1d15cc Mon Sep 17 00:00:00 2001 From: MacaronFR Date: Sun, 14 Jul 2024 22:54:15 +0200 Subject: [PATCH] Fix test --- .../src/test/kotlin/hollybike/api/AuthenticationTest.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/backend/src/test/kotlin/hollybike/api/AuthenticationTest.kt b/packages/backend/src/test/kotlin/hollybike/api/AuthenticationTest.kt index dc2acd9d..7b741f7f 100644 --- a/packages/backend/src/test/kotlin/hollybike/api/AuthenticationTest.kt +++ b/packages/backend/src/test/kotlin/hollybike/api/AuthenticationTest.kt @@ -191,7 +191,7 @@ class AuthenticationTest : IntegrationSpec({ ) ) }.apply { - status shouldBe HttpStatusCode.Forbidden + status shouldBe HttpStatusCode.Unauthorized } } } @@ -214,7 +214,7 @@ class AuthenticationTest : IntegrationSpec({ ) ) }.apply { - status shouldBe HttpStatusCode.Forbidden + status shouldBe HttpStatusCode.Unauthorized } } } @@ -237,7 +237,7 @@ class AuthenticationTest : IntegrationSpec({ ) ) }.apply { - status shouldBe HttpStatusCode.Forbidden + status shouldBe HttpStatusCode.Unauthorized } } } @@ -260,7 +260,7 @@ class AuthenticationTest : IntegrationSpec({ ) ) }.apply { - status shouldBe HttpStatusCode.Forbidden + status shouldBe HttpStatusCode.Unauthorized } } }