Skip to content

Commit

Permalink
Ignore tests currently failing on PHP 7
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Aug 29, 2016
1 parent 76098f9 commit 25768f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/php/img/unittest/ExifDataTest.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ public function fromFileWithIptcOnly() {
$this->extractFromFile($this->resourceAsFile('iptc-only.jpg'));
}

#[@test]
#[@test, @ignore('https://bugs.php.net/bug.php?id=72819')]
public function fromFileWithExifAndIptc() {
$i= $this->extractFromFile($this->resourceAsFile('exif-and-iptc.jpg'));
$this->assertEquals(1, $i->getWidth());
$this->assertEquals(1, $i->getHeight());
}

#[@test]
#[@test, @ignore('https://bugs.php.net/bug.php?id=72819')]
public function fromFileWithExifOnly() {
$i= $this->extractFromFile($this->resourceAsFile('exif-only.jpg'));
$this->assertEquals(1, $i->getWidth());
$this->assertEquals(1, $i->getHeight());
}

#[@test]
#[@test, @ignore('https://bugs.php.net/bug.php?id=72819')]
public function exifSampleCanonIxus() {
$i= $this->extractFromFile($this->resourceAsFile('canon-ixus.jpg', 'exif_org'));
$this->assertEquals('1/350', $i->getExposureTime());
Expand Down

0 comments on commit 25768f9

Please sign in to comment.