From b3fb870cbe1a8e34d05d320aa99324b449cce502 Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Thu, 30 Nov 2023 01:56:29 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=E5=AD=98=E5=9C=A8=E3=81=97=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E3=81=AE=E5=90=8D?= =?UTF-8?q?=E5=89=8D=E3=82=92=E8=A4=87=E9=9B=91=E3=81=AB=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=86=E3=81=A3=E3=81=8B=E3=82=8A=E8=A2=AB=E3=81=A3=E3=81=9F?= =?UTF-8?q?=E3=82=8A=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/intTest/kotlin/activitypub/webfinger/WebFingerTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intTest/kotlin/activitypub/webfinger/WebFingerTest.kt b/src/intTest/kotlin/activitypub/webfinger/WebFingerTest.kt index abee25d6..8e0b0294 100644 --- a/src/intTest/kotlin/activitypub/webfinger/WebFingerTest.kt +++ b/src/intTest/kotlin/activitypub/webfinger/WebFingerTest.kt @@ -55,7 +55,7 @@ class WebFingerTest { @Test fun `webfinger 存在しないユーザーに404`() { mockMvc - .get("/.well-known/webfinger?resource=acct:test-user@example.com") + .get("/.well-known/webfinger?resource=acct:invalid-user-notfound-afdjashfal@example.com") .andExpect { status { isNotFound() } } }