diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-09 12:47:49 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-09 12:47:49 -0500 |
commit | 3df63e051fac84cec98c912668722f87d6e8183e (patch) | |
tree | 648a92db37f3295669ae6cc59126fc003235cfa8 /tests/units/ProjectTest.php | |
parent | e0117cb8ed6326e8c77a02ce265c2b5f195e08d8 (diff) |
Add projects to the dashboard and rename some methods
Diffstat (limited to 'tests/units/ProjectTest.php')
-rw-r--r-- | tests/units/ProjectTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/ProjectTest.php b/tests/units/ProjectTest.php index cec8d93d..c507739b 100644 --- a/tests/units/ProjectTest.php +++ b/tests/units/ProjectTest.php @@ -167,7 +167,7 @@ class ProjectTest extends Base $pp = new ProjectPermission($this->registry); - $this->assertEquals(array(1 => 'admin'), $pp->getAllowedUsers(3)); - $this->assertEquals(array(1 => 'admin'), $pp->getAllowedUsers(4)); + $this->assertEquals(array(1 => 'admin'), $pp->getMembers(3)); + $this->assertEquals(array(1 => 'admin'), $pp->getMembers(4)); } } |