From 5ad1eb71a4994dec822dcafca617e7bd64784da2 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 15 Nov 2025 11:22:21 +0100 Subject: [PATCH] Update exception message for missing pixelmatch package --- src/Drivers/ImageDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Drivers/ImageDriver.php b/src/Drivers/ImageDriver.php index 8e23120..fa62d30 100644 --- a/src/Drivers/ImageDriver.php +++ b/src/Drivers/ImageDriver.php @@ -29,7 +29,7 @@ public function extension(): string public function match($expected, $actual) { if (! class_exists(Pixelmatch::class)) { - throw new Exception('The spatie/pixelmatch package is not installed. Please install it to enable image comparison.'); + throw new Exception('The spatie/pixelmatch-php package is not installed. Please install it to enable image comparison.'); } $tempPath = sys_get_temp_dir();