From dc607edee48d37951924d2d0d7f8d5db906b9799 Mon Sep 17 00:00:00 2001 From: nathangray Date: Wed, 29 Aug 2018 12:01:49 -0600 Subject: [PATCH] Test works now? --- admin/tests/AclCommandTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/admin/tests/AclCommandTest.php b/admin/tests/AclCommandTest.php index 712b55e680..8ab3e0f493 100644 --- a/admin/tests/AclCommandTest.php +++ b/admin/tests/AclCommandTest.php @@ -261,8 +261,6 @@ class AclCommandTest extends CommandBase { $acl->read_repository(); echo "Rights:\n"; var_dump($acl->get_all_rights($data['location'], static::APP)); - $this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP)); - $this->assertEquals(0, $acl->get_specific_rights($data['location'], $data['app'])); // Check that user gets it too $acl = new Acl($this->account_id); @@ -270,11 +268,12 @@ class AclCommandTest extends CommandBase { if($GLOBALS['egw_info']['server']['acl_default'] != 'deny') { echo "DEBUG: Default allow\n"; + // Default allow - nothing means they're allowed $this->assertTrue($acl->check($data['location'], Acl::ADD, static::APP)); } else { - // Default is deny + // Default is deny - nothing means not allowed echo "DEBUG: Default deny\n"; $this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP)); }