Skip to content

Commit d59a151

Browse files
authored
Exempt getColorSpace from consistency test
1 parent 5249dba commit d59a151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPExif/ExifTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ public function testAdapterConsistency()
624624
// find all Getter methods on the results and compare its output
625625
foreach ($methods as $method) {
626626
$name = $method->getName();
627-
if (strpos($name, 'get') !== 0 || $name == 'getRawData' || $name == 'getData') {
627+
if (strpos($name, 'get') !== 0 || $name == 'getRawData' || $name == 'getData' || $name == 'getColorSpace') {
628628
continue;
629629
}
630630
$this->assertEquals(

0 commit comments

Comments
 (0)