Missing space

This commit is contained in:
Carlos Buenosvinos
2021-09-15 22:57:19 +02:00
parent 5ed578a34d
commit 5e24bf5cb0

View File

@@ -42,7 +42,7 @@ class CheepServiceTest extends TestCase
$this->authors->shouldReceive('byUsername')->andReturns(self::anAuthor(1));
$this->cheeps->shouldReceive('add')->once();
$cheep =$this->cheepService->postCheep('irrelevant', 'message');
$cheep = $this->cheepService->postCheep('irrelevant', 'message');
$this->assertNotNull($cheep);
$this->assertEquals(1, $cheep->authorId());