Skip to content

Commit

Permalink
Tests: Switch from QUnit.jsDump to QUnit.dump
Browse files Browse the repository at this point in the history
`QUnit.jsDump` was renamed to `QUnit.dump` in QUnit 2.0.

Ref gh-2157
  • Loading branch information
mgol committed May 10, 2023
1 parent 9dc2bf9 commit f36fe9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/position/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ QUnit.test( "positions", function( assert ) {
assert.deepEqual( el.offset(), {
top: start.top + offsets[ vertical ] * ( my ? -1 : 1 ),
left: start.left + offsets[ horizontal ] * ( my ? -1 : 1 )
}, "Position via " + QUnit.jsDump.parse( { my: _my, at: _at } ) );
}, "Position via " + QUnit.dump.parse( { my: _my, at: _at } ) );
} );
} );
} );
Expand Down

0 comments on commit f36fe9e

Please sign in to comment.