From 470318db36dabb4976e0a1947e7579b015ee62f0 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 1 Jul 2019 09:52:27 +0200 Subject: [PATCH] Fix the actual oauth2 tests Signed-off-by: Roeland Jago Douma --- apps/oauth2/tests/Settings/AdminTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oauth2/tests/Settings/AdminTest.php b/apps/oauth2/tests/Settings/AdminTest.php index 8b0883c756..022ae913e1 100644 --- a/apps/oauth2/tests/Settings/AdminTest.php +++ b/apps/oauth2/tests/Settings/AdminTest.php @@ -51,6 +51,6 @@ class AdminTest extends TestCase { } public function testGetPriority() { - $this->assertSame(0, $this->admin->getPriority()); + $this->assertSame(100, $this->admin->getPriority()); } }