From fc1418fac248ef1be1ad3e31955d0df070ec46a8 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Mon, 17 Oct 2022 17:06:36 +0200 Subject: [PATCH] TST: fix tests --- test/core/js/modules/edit_mode.js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/js/modules/edit_mode.js.js b/test/core/js/modules/edit_mode.js.js index 17b32023..6f762aaa 100644 --- a/test/core/js/modules/edit_mode.js.js +++ b/test/core/js/modules/edit_mode.js.js @@ -821,7 +821,7 @@ QUnit.test("_toggle_list_property", async function (assert) { var val = $(single_input).val(); if (dt == "DATETIME") { val = $(single_input).find("[type='date']").val() + "T" + $(single_input).find("[type='time']").val(); - } else if (["Person", "FILE", "REFERENCE"].indexOf(dt) > -1) { + } else if (["BOOLEAN", "Person", "FILE", "REFERENCE"].indexOf(dt) > -1) { val = $(single_input).find("select").val(); } assert.equal(val, data[`LIST<${dt}>`], `single ${dt} input has correct value`); -- GitLab