From 2f36a2661aa4bd541aa917bfe5f2ac23bbad2e68 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Mon, 1 Jan 2018 19:05:15 -0600 Subject: [PATCH] Change to assertCount in test --- tests/GeoTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/GeoTest.php b/tests/GeoTest.php index d487c908..8d2ce67d 100644 --- a/tests/GeoTest.php +++ b/tests/GeoTest.php @@ -50,6 +50,6 @@ class GeoTest extends TestCase $route_str = 'KAUS SID '.implode(' ', $route).' STAR KJFK'; $coords = $geoSvc->getCoordsFromRoute('KAUS', 'KJFK', [0, 0], $route_str); - $this->assertEquals(5, \count($coords)); + $this->assertCount(5, $coords); } }