summaryrefslogtreecommitdiff
path: root/tests/units/BoardTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/BoardTest.php')
-rw-r--r--tests/units/BoardTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/BoardTest.php b/tests/units/BoardTest.php
index b83fee85..a7de34bd 100644
--- a/tests/units/BoardTest.php
+++ b/tests/units/BoardTest.php
@@ -111,8 +111,8 @@ class BoardTest extends Base
$b = new Board($this->container);
$this->assertEquals(1, $p->create(array('name' => 'UnitTest1')));
- $this->assertTrue($b->addColumn(1, 'another column'));
- $this->assertTrue($b->addColumn(1, 'one more', 3));
+ $this->assertNotFalse($b->addColumn(1, 'another column'));
+ $this->assertNotFalse($b->addColumn(1, 'one more', 3));
$columns = $b->getColumns(1);
$this->assertTrue(is_array($columns));