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
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-04-18 18:29:59 +0300
committerJoas Schilling <coding@schilljs.com>2017-04-18 18:29:59 +0300
commit8ae1023e60ca188a12caf5b3abf51261a4332ad7 (patch)
treee6fd291741ea2a90303e5232e887f38444ce7982 /tests/Unit
parent475ad40e443a1be52fa05134cfabf75d1ac9a2b6 (diff)
Fix routes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/Unit')
-rw-r--r--tests/Unit/AppInfo/RoutesTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/AppInfo/RoutesTest.php b/tests/Unit/AppInfo/RoutesTest.php
index ccac673..4e58432 100644
--- a/tests/Unit/AppInfo/RoutesTest.php
+++ b/tests/Unit/AppInfo/RoutesTest.php
@@ -37,6 +37,6 @@ class RoutesTest extends TestCase {
$this->assertCount(1, $routes);
$this->assertArrayHasKey('ocs', $routes);
$this->assertInternalType('array', $routes['ocs']);
- $this->assertGreaterThanOrEqual(3, sizeof($routes['ocs']));
+ $this->assertCount(5, $routes['ocs']);
}
}