From: Timo Tijhof Date: Mon, 20 Mar 2017 22:32:43 +0000 (-0700) Subject: Tests: Fix incorrect assert name for ensure_iterability_es6 X-Git-Tag: 3.3.0~92 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c1c549793a8772107e128d21f8a8f0c3fdf0f027;p=jquery.git Tests: Fix incorrect assert name for ensure_iterability_es6 Closes gh-3584 Ref bb026fc1. --- diff --git a/test/node_smoke_tests/lib/ensure_iterability_es6.js b/test/node_smoke_tests/lib/ensure_iterability_es6.js index 8e2396d23..4b30690a5 100644 --- a/test/node_smoke_tests/lib/ensure_iterability_es6.js +++ b/test/node_smoke_tests/lib/ensure_iterability_es6.js @@ -18,6 +18,6 @@ module.exports = function ensureIterability() { result += i.nodeName; } - assert.strictEqual( result, "DIVSPANA", "for-of doesn't work on jQuery objects" ); + assert.strictEqual( result, "DIVSPANA", "for-of works on jQuery objects" ); } ); };