From 4ca621f0e33241340200334f4db859c69523a65a Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Wed, 13 Jul 2016 20:10:15 +0100 Subject: [PATCH] Fix the syndication list test to match better parsing support --- tests/MicropubClientTest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/MicropubClientTest.php b/tests/MicropubClientTest.php index 0fb4bdf3..14a6da5a 100644 --- a/tests/MicropubClientTest.php +++ b/tests/MicropubClientTest.php @@ -32,7 +32,12 @@ class MicropubClientTest extends TestCase public function testClientPageRecentAuth() { - $syndication = ['https://twitter.com/jonnybarnes']; + $syndication = [ + [ + 'target' => 'https://twitter.com/jonnybarnes', + 'name' => 'jonnybarnes on Twitter', + ] + ]; $this->withSession([ 'me' => $this->appurl, 'syndication' => $syndication,