]> source.dussan.org Git - jquery.git/commitdiff
Tests: Fix incorrect assert name for ensure_iterability_es6
authorTimo Tijhof <krinklemail@gmail.com>
Mon, 20 Mar 2017 22:32:43 +0000 (15:32 -0700)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 20 Mar 2017 22:32:43 +0000 (23:32 +0100)
Closes gh-3584
Ref bb026fc1.

test/node_smoke_tests/lib/ensure_iterability_es6.js

index 8e2396d232b727f42462a76db6687ba81e580053..4b30690a5bb05a9a4cf37d8a37a4ad789197fd24 100644 (file)
@@ -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" );
        } );
 };