Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mrprompt committed Dec 16, 2020
1 parent fe2e994 commit 8c1fb8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Application/AuthenticationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function logoutWithValidCredentials()
$result = $this->service->logout(
$this->faker->shuffleString(),
$this->faker->randomNumber(6),
$this->faker->uuid,
$this->faker->uuid
);

$this->assertEmpty($result);
Expand All @@ -83,7 +83,7 @@ public function logoutWithoutClientId()
$result = $this->service->logout(
$this->faker->shuffleString(),
$this->faker->randomNumber(6),
$this->faker->uuid,
$this->faker->uuid
);

$this->assertArrayHasKey('error', $result);
Expand Down

0 comments on commit 8c1fb8c

Please sign in to comment.