From d4f70e03d25185807793ec1a977367d139510805 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Mar 2018 14:18:04 +0000 Subject: [PATCH] Update test to reflect new php-mf2 output --- tests/Unit/Jobs/ProcessWebMentionJobTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Jobs/ProcessWebMentionJobTest.php b/tests/Unit/Jobs/ProcessWebMentionJobTest.php index f271cfc3..5307a202 100644 --- a/tests/Unit/Jobs/ProcessWebMentionJobTest.php +++ b/tests/Unit/Jobs/ProcessWebMentionJobTest.php @@ -115,7 +115,7 @@ HTML; $this->assertDatabaseHas('webmentions', [ 'source' => $source, 'type' => 'in-reply-to', - 'mf2' => '{"rels": [], "items": [{"type": ["h-entry"], "properties": {"name": ["In reply to a note \\n Updated reply"], "content": [{"html": "Updated reply", "value": "Updated reply"}], "in-reply-to": ["' . config('app.url') . '/notes/E"]}}]}', + 'mf2' => '{"rels": [], "items": [{"type": ["h-entry"], "properties": {"content": [{"html": "Updated reply", "value": "Updated reply"}], "in-reply-to": ["' . config('app.url') . '/notes/E"]}}], "rel-urls": []}', ]); } }