diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 20:40:02 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 20:40:02 -0800 |
commit | 457e181ffb915e36e5da77317a6c824e10f5d5b3 (patch) | |
tree | eb5443ac4cdbd92278359fcd15d888752c70bc77 /tests/units/ActionTest.php | |
parent | e6d0658a0eedeb6a641c003d1c492af0f9a7502c (diff) |
Improve task duplication
Diffstat (limited to 'tests/units/ActionTest.php')
-rw-r--r-- | tests/units/ActionTest.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/units/ActionTest.php b/tests/units/ActionTest.php index b6528333..19226449 100644 --- a/tests/units/ActionTest.php +++ b/tests/units/ActionTest.php @@ -142,29 +142,29 @@ class ActionTest extends Base // Our task should have the color red and position=0 $t1 = $task->getById(1); - $this->assertEquals(0, $t1['position']); + $this->assertEquals(1, $t1['position']); $this->assertEquals(1, $t1['is_active']); $this->assertEquals('red', $t1['color_id']); $t1 = $task->getById(2); - $this->assertEquals(1, $t1['position']); + $this->assertEquals(2, $t1['position']); $this->assertEquals(1, $t1['is_active']); $this->assertEquals('yellow', $t1['color_id']); // We move our tasks - $task->movePosition(1, 1, 1); // task #1 to position 1 - $task->movePosition(2, 1, 0); // task #2 to position 0 + $task->movePosition(1, 1, 2); // task #1 to position 2 + $task->movePosition(2, 1, 1); // task #2 to position 1 $this->assertTrue($this->registry->event->isEventTriggered(Task::EVENT_MOVE_POSITION)); // Both tasks should be green $t1 = $task->getById(1); - $this->assertEquals(1, $t1['position']); + $this->assertEquals(2, $t1['position']); $this->assertEquals(1, $t1['is_active']); $this->assertEquals('green', $t1['color_id']); $t1 = $task->getById(2); - $this->assertEquals(0, $t1['position']); + $this->assertEquals(1, $t1['position']); $this->assertEquals(1, $t1['is_active']); $this->assertEquals('green', $t1['color_id']); } |