From 4d007ec39fe808c28fe08516afe549aa5d0aeb42 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 22 Nov 2014 19:15:50 -0500 Subject: addColumn() return the column_id now --- tests/units/BoardTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/units') 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)); -- cgit v1.2.3