From 62d09888f167c4097b0260d7650dc80b86e93ffb Mon Sep 17 00:00:00 2001 From: George Boot <884482+georgeboot@users.noreply.github.com> Date: Fri, 30 Jul 2021 10:32:26 +0200 Subject: [PATCH] Fix test --- tests/HandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/HandlerTest.php b/tests/HandlerTest.php index 2504d56..03de2fb 100644 --- a/tests/HandlerTest.php +++ b/tests/HandlerTest.php @@ -82,7 +82,7 @@ $mock = new MockHandler(); $mock->append(function (CommandInterface $cmd, RequestInterface $req) { - return new ApiGatewayManagementApiException('', $cmd, ['code' => 'GoneException']); + return new ApiGatewayManagementApiException('', $cmd, ['code' => 'Gone']); }); /** @var SubscriptionRepository */