Merge "resourceloader: Simplify StringSet fallback"
[lhc/web/wiklou.git] / tests / qunit / suites / resources / mediawiki / mediawiki.String.trimByteLength.test.js
index e2eea94..e7e7a8d 100644 (file)
@@ -1,4 +1,4 @@
-( function ( $, mw ) {
+( function () {
        var simpleSample, U_20AC, poop, mbSample,
                trimByteLength = require( 'mediawiki.String' ).trimByteLength;
 
@@ -40,7 +40,7 @@
                QUnit.test( opt.description, function ( assert ) {
                        var res = trimByteLength( opt.initial, opt.sample, opt.limit, opt.fn );
 
-                       assert.equal(
+                       assert.strictEqual(
                                res.newVal,
                                opt.expected,
                                'New value matches the expected string'
                expected: '\uD800'
        } );
 
-}( jQuery, mediaWiki ) );
+}() );