From 8c1fb8c18efedc92ba38a61464bd78914ade5a2e Mon Sep 17 00:00:00 2001 From: Thiago Paes Date: Wed, 16 Dec 2020 00:51:40 -0300 Subject: [PATCH] Fix syntax --- tests/Application/AuthenticationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Application/AuthenticationTest.php b/tests/Application/AuthenticationTest.php index 794daf5..f9bb884 100644 --- a/tests/Application/AuthenticationTest.php +++ b/tests/Application/AuthenticationTest.php @@ -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); @@ -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);