From 264361533c233ccb8a5b4a3a342baebc55dad6ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Wed, 17 Jan 2024 15:42:29 +0100 Subject: [PATCH] qa: rephrase exception message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- test/Service/ConfigProviderIntegrationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Service/ConfigProviderIntegrationTest.php b/test/Service/ConfigProviderIntegrationTest.php index ee97642d..3ea15227 100644 --- a/test/Service/ConfigProviderIntegrationTest.php +++ b/test/Service/ConfigProviderIntegrationTest.php @@ -78,7 +78,7 @@ public function servicesProvidedByConfigProvider(): Generator private static function assertMappedWithStrings(mixed $iterable): void { if (! is_array($iterable)) { - throw new InvalidArgumentException('Expecting value to be iterable.'); + throw new InvalidArgumentException('Expecting value to be an array.'); } foreach (array_keys($iterable) as $value) {