From b27bbe5771e471b24445884a29fd7e9498fae07e Mon Sep 17 00:00:00 2001 From: Frederik Bosch Date: Wed, 18 Jan 2017 21:15:33 +0100 Subject: [PATCH] fix php 5.4 --- tests/ImageManagerTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/ImageManagerTest.php b/tests/ImageManagerTest.php index 7f0a78c3..e23d9127 100644 --- a/tests/ImageManagerTest.php +++ b/tests/ImageManagerTest.php @@ -1,6 +1,5 @@ make('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'); - $this->assertInstanceOf(Image::class, $image); - $this->assertInstanceOf(Imagick::class, $image->getCore()); + $this->assertInstanceOf('Intervention\Image\Image', $image); + $this->assertInstanceOf('Imagick', $image->getCore()); } }