From c1c549793a8772107e128d21f8a8f0c3fdf0f027 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 20 Mar 2017 15:32:43 -0700 Subject: [PATCH] Tests: Fix incorrect assert name for ensure_iterability_es6 Closes gh-3584 Ref bb026fc1. --- test/node_smoke_tests/lib/ensure_iterability_es6.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); } ); }; -- 2.39.5