Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne committed Oct 31, 2024
1 parent ca719ca commit 04fffb9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions phpunit/functional/NotificationTargetTicketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ public function testgetDataForObject()
'##task.author##' => '_test_user',
'##task.categoryid##' => $taskcat->getID(),
'##task.category##' => '_cat_1 > _subcat_1',
'##task.categorycomment##' => 'Comment for sub-category _subcat_1',
'##task.categorycomment##' => <<<HTML
Comment for sub-category _subcat_1
HTML,
'##task.date##' => '2016-10-19 11:50',
'##task.description##' => 'Task to be done',
'##task.time##' => '0 seconds',
Expand Down Expand Up @@ -186,7 +191,12 @@ public function testgetDataForObject()
'##task.author##' => '_test_user',
'##task.categoryid##' => $taskcat->getID(),
'##task.category##' => 'FR - _cat_1 > FR - _subcat_1',
'##task.categorycomment##' => 'FR - Commentaire pour sous-catégorie _subcat_1',
'##task.categorycomment##' => <<<HTML
FR - Commentaire pour sous-catégorie _subcat_1
HTML,
'##task.date##' => '2016-10-19 11:50',
'##task.description##' => 'Task to be done',
'##task.time##' => '0 seconde',
Expand Down

0 comments on commit 04fffb9

Please sign in to comment.