Pass in what the test says it passes in.

This commit is contained in:
Dane Everitt 2017-09-26 22:23:19 -05:00
parent 774c9680a3
commit 65d63804ab
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -99,7 +99,7 @@ class NodeDeletionServiceTest extends TestCase
$this->repository->shouldReceive('delete')->with($node->id)->once()->andReturn(true); $this->repository->shouldReceive('delete')->with($node->id)->once()->andReturn(true);
$this->assertTrue( $this->assertTrue(
$this->service->handle($node->id), $this->service->handle($node),
'Assert that deletion returns a positive boolean value.' 'Assert that deletion returns a positive boolean value.'
); );
} }