Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ClientControllerTest.php
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ public function test_clients_can_be_stored()

$clients->shouldReceive('create')
->once()
->with(1, 'client name', 'http://localhost', false, false, true)
->with(1, 'client name', 'http://localhost', null, false, false, true)
->andReturn($client = new Client);

$redirectRule = m::mock(RedirectRule::class);
@@ -86,7 +86,7 @@ public function test_public_clients_can_be_stored()

$clients->shouldReceive('create')
->once()
->with(1, 'client name', 'http://localhost', false, false, false)
->with(1, 'client name', 'http://localhost', null, false, false, false)
->andReturn($client = new Client);

$redirectRule = m::mock(RedirectRule::class);

0 comments on commit a368f9e

Please sign in to comment.