X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fqunit%2Fsuites%2Fresources%2Fmediawiki%2Fmediawiki.test.js;h=ac4f16c46ccba8529299eeb05086ba33cf030fdd;hb=bacc11eb30ddf01624d5448f432b96afdae67c28;hp=111d85bd54ef6e92b642c7ed67653895a38381e1;hpb=ddff77af206c6b6bdcfd3ea985d5ef285aa3364d;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/qunit/suites/resources/mediawiki/mediawiki.test.js b/tests/qunit/suites/resources/mediawiki/mediawiki.test.js index 111d85bd54..ac4f16c46c 100644 --- a/tests/qunit/suites/resources/mediawiki/mediawiki.test.js +++ b/tests/qunit/suites/resources/mediawiki/mediawiki.test.js @@ -186,14 +186,14 @@ hello = mw.message( 'hello' ); - // https://bugzilla.wikimedia.org/show_bug.cgi?id=44459 + // https://phabricator.wikimedia.org/T46459 assert.equal( hello.format, 'text', 'Message property "format" defaults to "text"' ); assert.strictEqual( hello.map, mw.messages, 'Message property "map" defaults to the global instance in mw.messages' ); assert.equal( hello.key, 'hello', 'Message property "key" (currect key)' ); assert.deepEqual( hello.parameters, [], 'Message property "parameters" defaults to an empty array' ); - // Todo + // TODO assert.ok( hello.params, 'Message prototype "params"' ); hello.format = 'plain';