From a5fb25393a1403ebf076f73d3ef0769d7efa7f14 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 25 Apr 2017 10:17:53 +0200 Subject: [PATCH] Update tests. --- tests/unit/DocBlock/Tags/AuthorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/DocBlock/Tags/AuthorTest.php b/tests/unit/DocBlock/Tags/AuthorTest.php index a54954f..d3fd06c 100644 --- a/tests/unit/DocBlock/Tags/AuthorTest.php +++ b/tests/unit/DocBlock/Tags/AuthorTest.php @@ -121,7 +121,7 @@ class AuthorTest extends \PHPUnit_Framework_TestCase { $fixture = new Author('Mike van Riel', 'mike@phpdoc.org'); - $this->assertSame('Mike van Riel', (string)$fixture); + $this->assertSame('Mike van Riel ', (string)$fixture); } /** @@ -132,7 +132,7 @@ class AuthorTest extends \PHPUnit_Framework_TestCase { $fixture = Author::create('Mike van Riel '); - $this->assertSame('Mike van Riel', (string)$fixture); + $this->assertSame('Mike van Riel ', (string)$fixture); $this->assertSame('Mike van Riel', $fixture->getAuthorName()); $this->assertSame('mike@phpdoc.org', $fixture->getEmail()); }