Skip to content

Commit

Permalink
fix: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bepsvpt committed Aug 11, 2024
1 parent 0c9cd99 commit 19477a2
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/BlurHashTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,7 @@ public function testImagickDriverDecode(): void

$this->assertTrue($image->writeImage('jpg:'.$path));

$hash = match (PHP_OS_FAMILY) {
'Darwin' => md5_file($this->file('11.jpg')),
default => '305ada74d76f6ed94ad743659abe2a29',
};

$this->assertSame($hash, md5_file($path));
$this->assertSame('305ada74d76f6ed94ad743659abe2a29', md5_file($path));
}

public function testPhpVipsDriverDecode(): void
Expand Down

0 comments on commit 19477a2

Please sign in to comment.