We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d1e7e commit c8908f2Copy full SHA for c8908f2
tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php
@@ -301,21 +301,21 @@ public function providerGetValueForTargetText() {
301
'values' => "[]"
302
]),
303
'value' => json_encode(['a']),
304
- 'expected' => '<p></p>'
+ 'expected' => ''
305
],
306
[
307
'question' => $this->getQuestion([
308
'values' => json_encode(['a', 'b', 'c'])
309
310
311
- 'expected' => '<p>a</p>'
+ 'expected' => 'a'
312
313
314
315
316
317
'value' => json_encode(['a', 'c']),
318
- 'expected' => '<p>a</p><p>c</p>'
+ 'expected' => 'a<br />c'
319
320
];
321
}
0 commit comments