diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-12-03 16:33:38 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-12-07 15:44:04 +0100 |
commit | c02e6fcae218387a67d201d4171b312e2e82d310 (patch) | |
tree | 96f179e429fe87b5de2e382560ca7c1b789c07dd /tests | |
parent | b3037dee6a578254161fa96766d77bf8d007b55c (diff) | |
download | nextcloud-server-c02e6fcae218387a67d201d4171b312e2e82d310.tar.gz nextcloud-server-c02e6fcae218387a67d201d4171b312e2e82d310.zip |
fix appconfig tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppConfigTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/AppConfigTest.php b/tests/lib/AppConfigTest.php index 40a99709bd5..d2643d599f3 100644 --- a/tests/lib/AppConfigTest.php +++ b/tests/lib/AppConfigTest.php @@ -140,11 +140,11 @@ class AppConfigTest extends TestCase { public function testGetApps() { $config = new \OC\AppConfig(\OC::$server->getDatabaseConnection()); - $this->assertEquals([ + $this->assertEqualsCanonicalizing([ 'anotherapp', 'someapp', 'testapp', - '123456', + 123456, ], $config->getApps()); } @@ -152,7 +152,7 @@ class AppConfigTest extends TestCase { $config = new \OC\AppConfig(\OC::$server->getDatabaseConnection()); $keys = $config->getKeys('testapp'); - $this->assertEquals([ + $this->assertEqualsCanonicalizing([ 'deletethis', 'depends_on', 'enabled', |