From: Michał Gołębiowski-Owczarek Date: Tue, 26 Mar 2024 15:17:00 +0000 (+0100) Subject: Tests: Fix tests with the Git Core build X-Git-Tag: 1.13.3~16 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=802642c37323d5fc05bfa4cee90a900953f9a98d;p=jquery-ui.git Tests: Fix tests with the Git Core build jQuery PR jquery/jquery#5452 removed special handling of boolean attributes. Thankfully, this only broke a single jQuery UI test. Closes gh-2220 --- diff --git a/tests/unit/selectmenu/methods.js b/tests/unit/selectmenu/methods.js index 31c2a2a2b..f2506f2d3 100644 --- a/tests/unit/selectmenu/methods.js +++ b/tests/unit/selectmenu/methods.js @@ -41,7 +41,8 @@ QUnit.test( "enable / disable", function( assert ) { element.selectmenu( "disable" ); assert.ok( element.selectmenu( "option", "disabled" ), "disable: widget option" ); - assert.equal( element.attr( "disabled" ), "disabled", "disable: native select disabled" ); + assert.ok( [ "disabled", "" ].indexOf( element.attr( "disabled" ) ) !== -1, + "disable: native select disabled" ); assert.equal( button.attr( "aria-disabled" ), "true", "disable: button ARIA" ); assert.equal( button.attr( "tabindex" ), -1, "disable: button tabindex" ); assert.equal( menu.attr( "aria-disabled" ), "true", "disable: menu ARIA" );