From f9ed3afb61d4ef824ea771dfa90296f0f43b7e26 Mon Sep 17 00:00:00 2001 From: Bobby Allen Date: Sun, 4 Dec 2016 20:10:09 +0000 Subject: [PATCH] Fixes unit test code for when running against PHP 5.4 instances. --- tests/LatLongEntityTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LatLongEntityTest.php b/tests/LatLongEntityTest.php index 04cf0f7..66188a7 100644 --- a/tests/LatLongEntityTest.php +++ b/tests/LatLongEntityTest.php @@ -73,6 +73,6 @@ public function testInvalidCoords() public function testValidCoords() { $test = new LatLong($this->test_lat, $this->test_lng); - $this->assertInstanceOf(LatLong::class, $test); + $this->assertInstanceOf('\Ballen\Distical\Entities\LatLong', $test); } }