Skip to content

Commit

Permalink
Commit from GitHub Actions (style-fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed Oct 25, 2022
1 parent 1c52851 commit b8c280d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Responses/AbortResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@

namespace MagicLink\Test\Responses;

use MagicLink\Test\TestCase;
use MagicLink\Responses\AbortResponse;
use MagicLink\Test\TestCase;
use Symfony\Component\HttpKernel\Exception\HttpException;

class AbortResponseTest extends TestCase
{
public function setUp(): void
{
parent::setUp();

$this->withoutExceptionHandling();
$this->expectException(HttpException::class);

$this->app['config']->set(
'magiclink.invalid_response.class',
AbortResponse::class
);
}

public function test_default_response()
{
$this->get('/magiclink/bad_token')
Expand Down

0 comments on commit b8c280d

Please sign in to comment.