Skip to content

Commit

Permalink
Fixes unit test code for when running against PHP 5.4 instances.
Browse files Browse the repository at this point in the history
  • Loading branch information
allebb committed Dec 4, 2016
1 parent d55a63f commit f9ed3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/LatLongEntityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit f9ed3af

Please sign in to comment.