Skip to content

Commit d829782

Browse files
authored
Merge pull request #229 from Chris53897/patch-1
Update exception message for missing pixelmatch package
2 parents c22dafd + 5ad1eb7 commit d829782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Drivers/ImageDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function extension(): string
2929
public function match($expected, $actual)
3030
{
3131
if (! class_exists(Pixelmatch::class)) {
32-
throw new Exception('The spatie/pixelmatch package is not installed. Please install it to enable image comparison.');
32+
throw new Exception('The spatie/pixelmatch-php package is not installed. Please install it to enable image comparison.');
3333
}
3434

3535
$tempPath = sys_get_temp_dir();

0 commit comments

Comments
 (0)