From da78c7f752343a622267217dc26d09d39330c456 Mon Sep 17 00:00:00 2001 From: MGatner Date: Wed, 5 May 2021 13:20:14 +0000 Subject: [PATCH] Fix test typo --- tests/system/Cache/Handlers/BaseHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/Cache/Handlers/BaseHandlerTest.php b/tests/system/Cache/Handlers/BaseHandlerTest.php index 4a65c115fd88..2141b1c4ed65 100644 --- a/tests/system/Cache/Handlers/BaseHandlerTest.php +++ b/tests/system/Cache/Handlers/BaseHandlerTest.php @@ -14,7 +14,7 @@ public function testValidateKeyInvalidType($input) $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage('Cache key must be a string'); - BaseHandler::validateKey(false); + BaseHandler::validateKey($input); } public function invalidTypeProvider(): array