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()); }