diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2017-03-20 15:32:43 -0700 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2017-03-20 23:32:43 +0100 |
commit | c1c549793a8772107e128d21f8a8f0c3fdf0f027 (patch) | |
tree | 69671334bc4e4d6937cf7df179ee1546bcec3a31 | |
parent | febb441eb9cf88845bd00048612672d920be570b (diff) | |
download | jquery-c1c549793a8772107e128d21f8a8f0c3fdf0f027.tar.gz jquery-c1c549793a8772107e128d21f8a8f0c3fdf0f027.zip |
Tests: Fix incorrect assert name for ensure_iterability_es6
Closes gh-3584
Ref bb026fc1.
-rw-r--r-- | test/node_smoke_tests/lib/ensure_iterability_es6.js | 2 |
1 files changed, 1 insertions, 1 deletions
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" ); } ); }; |