test: Jsonのシリアライズが少し変わっていたので修正

This commit is contained in:
usbharu 2023-04-29 21:50:01 +09:00
parent fada03297e
commit ccc9659a78
1 changed files with 2 additions and 1 deletions

View File

@ -50,8 +50,9 @@ class ActivityPubFollowServiceImplTest {
val follow = scheduleContext.props.props[ReceiveFollowJob.follow.name]
assertEquals("https://follower.example.com", actor)
assertEquals("https://example.com", targetActor)
//language=JSON
assertEquals(
"""{"type":"Follow","name":"Follow","object":"https://example.com","actor":"https://follower.example.com","@context":null}""",
"""{"type":"Follow","name":"Follow","actor":"https://follower.example.com","object":"https://example.com","@context":null}""",
follow
)
}