summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-25 20:30:59 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-25 20:30:59 -0500
commitd68fa290bb54e12b0532c539370408435d23e639 (patch)
tree8b0fa3a21079a6aa62377ed75ae5c9998435075d /tests
parent7731f00e29b36806af284ac2771b03e223da846a (diff)
Automatically add the logged user during project creation
Diffstat (limited to 'tests')
-rw-r--r--tests/units/ProjectTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/ProjectTest.php b/tests/units/ProjectTest.php
index 93cdcf6a..aab8398d 100644
--- a/tests/units/ProjectTest.php
+++ b/tests/units/ProjectTest.php
@@ -156,7 +156,7 @@ class ProjectTest extends Base
$this->assertEmpty($project['token']);
// Clone private project
- $this->assertEquals(3, $p->create(array('name' => 'Private', 'is_private' => 1), 1));
+ $this->assertEquals(3, $p->create(array('name' => 'Private', 'is_private' => 1), 1, true));
$this->assertEquals(4, $p->duplicate(3));
$project = $p->getById(4);