fix phpunit test

This commit is contained in:
DavidBadura
2015-04-22 11:32:43 +00:00
parent 188afd01ca
commit 9ba37c9d45
2 changed files with 21 additions and 14 deletions

View File

@@ -254,19 +254,21 @@ class TaskManager
*/
private function edit(Task $task)
{
$this->taskwarrior->modify(
[
'description' => $task->getDescription(),
'project' => $task->getProject(),
'priority' => $task->getPriority(),
'tags' => $task->getTags(),
'due' => $task->getDue() ? $task->getDue()->format('Ymd\THis\Z') : null,
'wait' => $task->getWait() ? $task->getWait()->format('Ymd\THis\Z') : null,
'until' => $task->getUntil() ? $task->getUntil()->format('Ymd\THis\Z') : null,
'recur' => $task->getRecurring() ? $task->getRecurring()->getValue() : null,
],
$task->getUuid()
);
$params = [
'description' => $task->getDescription(),
'project' => $task->getProject(),
'priority' => $task->getPriority(),
'tags' => $task->getTags(),
'due' => $task->getDue() ? $task->getDue()->format('Ymd\THis\Z') : null,
'wait' => $task->getWait() ? $task->getWait()->format('Ymd\THis\Z') : null,
'until' => $task->getUntil() ? $task->getUntil()->format('Ymd\THis\Z') : null
];
if ($task->getRecurring()) {
$params['recur'] = $task->getRecurring()->getValue();
}
$this->taskwarrior->modify($params, $task->getUuid());
}
/**