Skip to content

Commit a5fb253

Browse files
yunoshjaapio
authored andcommitted
Update tests.
1 parent 8ba65bc commit a5fb253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/DocBlock/Tags/AuthorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function testStringRepresentationIsReturned()
121121
{
122122
$fixture = new Author('Mike van Riel', '[email protected]');
123123

124-
$this->assertSame('Mike van Riel<[email protected]>', (string)$fixture);
124+
$this->assertSame('Mike van Riel <[email protected]>', (string)$fixture);
125125
}
126126

127127
/**
@@ -132,7 +132,7 @@ public function testFactoryMethod()
132132
{
133133
$fixture = Author::create('Mike van Riel <[email protected]>');
134134

135-
$this->assertSame('Mike van Riel<[email protected]>', (string)$fixture);
135+
$this->assertSame('Mike van Riel <[email protected]>', (string)$fixture);
136136
$this->assertSame('Mike van Riel', $fixture->getAuthorName());
137137
$this->assertSame('[email protected]', $fixture->getEmail());
138138
}

0 commit comments

Comments
 (0)