From cf7493d87e8d32719459baba5ce150a0a5dca1ea Mon Sep 17 00:00:00 2001 From: Marco Date: Sat, 29 Jul 2017 22:59:09 +0200 Subject: [PATCH] Fix response on exception in tests --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index 85cdf9d..0d2f4e7 100644 --- a/tests/index.php +++ b/tests/index.php @@ -86,7 +86,7 @@ function processRequestData(\Delight\Auth\Auth $auth) { return 'email not verified'; } catch (\Delight\Auth\AttemptCancelledException $e) { - return 'attempt randomly cancelled'; + return 'attempt cancelled'; } catch (\Delight\Auth\TooManyRequestsException $e) { return 'too many requests';