diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-21 00:37:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-21 00:37:04 -0700 |
commit | 95059f2bfd2c7dbffe4dba2df277f7356fb124a1 (patch) | |
tree | 34b4580a840f105c247fc97fcedf0594debbfc71 /tests | |
parent | af909f66a7a21cf7613934e43994799a85fd9d67 (diff) | |
download | volse-hubzilla-95059f2bfd2c7dbffe4dba2df277f7356fb124a1.tar.gz volse-hubzilla-95059f2bfd2c7dbffe4dba2df277f7356fb124a1.tar.bz2 volse-hubzilla-95059f2bfd2c7dbffe4dba2df277f7356fb124a1.zip |
fix permissionlimitstest after recent changes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/Access/PermissionLimitsTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Access/PermissionLimitsTest.php b/tests/unit/Access/PermissionLimitsTest.php index 58595111a..57ad42a19 100644 --- a/tests/unit/Access/PermissionLimitsTest.php +++ b/tests/unit/Access/PermissionLimitsTest.php @@ -66,7 +66,7 @@ class PermissionLimitsTest extends UnitTestCase { $this->assertEquals(PERMS_SPECIFIC, $stdlimits['write_pages']); $this->assertEquals(PERMS_SPECIFIC, $stdlimits['write_wiki']); $this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_wall']); - $this->assertEquals(PERMS_PUBLIC, $stdlimits['post_comments']); + $this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_comments']); $this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_mail']); $this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_like']); $this->assertEquals(PERMS_SPECIFIC, $stdlimits['tag_deliver']); |