Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix another linting error on the test
  • Loading branch information
rpkoller committed Aug 2, 2024
commit 7b9ea134ae78717f9f32f94cda3a0900b934eda3
2 changes: 1 addition & 1 deletion tests/unit/dialog/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ QUnit.test( "ui dialog title tagname", function( assert ) {

element = $( "<div>" ).dialog( { modal: true, uiDialogTitleTagName: "<h2>" } );
nodeName = element.dialog( "widget" ).find( ".ui-dialog-title" ).get( 0 ).nodeName.toLowerCase();
assert.equal ( nodeName, "h2", "The dialog title element is h2" );
assert.equal( nodeName, "h2", "The dialog title element is h2" );
} );

QUnit.test( "widget method", function( assert ) {
Expand Down