diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-29 00:30:06 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300 (patch) | |
tree | 7f46a7352a5163eb3d4d80d2c8eb55636b3f08a1 /tests | |
parent | 9dc2bf9737ba9c877b7b9f6e892100580adc0f2e (diff) | |
download | jquery-ui-f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300.tar.gz jquery-ui-f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300.zip |
Tests: Switch from QUnit.jsDump to QUnit.dump
`QUnit.jsDump` was renamed to `QUnit.dump` in QUnit 2.0.
Ref gh-2157
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/position/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/position/core.js b/tests/unit/position/core.js index dac56f5b9..9483e716d 100644 --- a/tests/unit/position/core.js +++ b/tests/unit/position/core.js @@ -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 } ) ); } ); } ); } ); |