We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0dfad3 commit c29ec03Copy full SHA for c29ec03
tests/StandardExceptions/HTTPExceptionsTest.php
@@ -8,7 +8,7 @@ public function testBadRequestException()
8
{
9
throw new \StandardExceptions\HTTPExceptions\BadRequestException('Test message passed', 92837, $previousException = new \Exception('test'));
10
}
11
- catch(\StandardExceptions\HTTPExceptions\IllegalArgumentTypeException $ex)
+ catch(\StandardExceptions\HTTPExceptions\BadRequestException $ex)
12
13
$this->assertEquals('Test message passed', $ex->getMessage());
14
$this->assertEquals(92837, $ex->getCode());
0 commit comments