diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/ProjectTest.php | 2 |
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); |