diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-10-19 16:07:43 -0700 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-10-19 16:07:43 -0700 |
commit | d5353bfcdcc0a164d3cf4cf8070ac813647b7377 (patch) | |
tree | df940f37af89b9361275bfb46ed41bcd869ffccf /tests | |
parent | d3b8fbfa2864e55b7e5916e55ca818599e7e94d6 (diff) |
Add priority to task export
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Export/TaskExportTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/Export/TaskExportTest.php b/tests/units/Export/TaskExportTest.php index 8e0be433..c57c5259 100644 --- a/tests/units/Export/TaskExportTest.php +++ b/tests/units/Export/TaskExportTest.php @@ -42,7 +42,7 @@ class TaskExportTest extends Base $report = $taskExport->export(1, date('Y-m-d'), date('Y-m-d')); $this->assertCount(3, $report); - $this->assertCount(22, $report[0]); + $this->assertCount(23, $report[0]); $this->assertEquals('Task Id', $report[0][0]); $this->assertEquals(1, $report[1][0]); |