From c8908f2655aa22c85367b56548595d22175ee05d Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Mon, 24 Oct 2022 15:03:02 +0200 Subject: [PATCH] fix(checkboxesfield): back to BR --- .../3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php b/tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php index 1f4aa2d47..2cdc421e5 100644 --- a/tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php +++ b/tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php @@ -301,21 +301,21 @@ public function providerGetValueForTargetText() { 'values' => "[]" ]), 'value' => json_encode(['a']), - 'expected' => '

' + 'expected' => '' ], [ 'question' => $this->getQuestion([ 'values' => json_encode(['a', 'b', 'c']) ]), 'value' => json_encode(['a']), - 'expected' => '

a

' + 'expected' => 'a' ], [ 'question' => $this->getQuestion([ 'values' => json_encode(['a', 'b', 'c']) ]), 'value' => json_encode(['a', 'c']), - 'expected' => '

a

c

' + 'expected' => 'a
c' ], ]; }