Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-02 12:18:57 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-09-02 12:18:57 +0300
commita5f923a4c88463da2e64d188ae0b36e6d2dce4e7 (patch)
tree51d3fc0b2e6889420df638394a4af225c17292d6 /tests
parentd5cc22a393c9efeb0bfe153ef86061227b7864d1 (diff)
Fix the count comparison of the routes
Diffstat (limited to 'tests')
-rw-r--r--tests/appinfo/RoutesTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/appinfo/RoutesTest.php b/tests/appinfo/RoutesTest.php
index cd521f8..867319e 100644
--- a/tests/appinfo/RoutesTest.php
+++ b/tests/appinfo/RoutesTest.php
@@ -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']);
}
}