Fix the count comparison of the routes

This commit is contained in:
Joas Schilling 2015-09-02 11:18:57 +02:00
Родитель d5cc22a393
Коммит a5f923a4c8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -28,6 +28,6 @@ class RoutesTest extends TestCase {
$this->assertCount(1, $routes);
$this->assertArrayHasKey('routes', $routes);
$this->assertInternalType('array', $routes['routes']);
$this->assertGreaterThanOrEqual(1, sizeof($routes['routes']));
$this->assertCount(2, $routes['routes']);
}
}