Skip to content

Commit

Permalink
Remove backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
r-kujawa committed Apr 28, 2023
1 parent cc38127 commit 93ff20f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/TestPaymentGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function payment_service_throws_exception_when_test_mode_gateway_does_not
config(['payment.test_mode' => true]);

$this->expectException(Exception::class);
$this->expectExceptionMessage('The \\App\\Services\\Payment\\FakePaymentRequest::class does not exist.');
$this->expectExceptionMessage('The App\\Services\\Payment\\FakePaymentRequest::class does not exist.');

Payment::authorize([]);
}
Expand Down

0 comments on commit 93ff20f

Please sign in to comment.