From e1ec3c29b31a0ff996f4e59d0e200e907c972263 Mon Sep 17 00:00:00 2001 From: Leonardo Balter Date: Wed, 5 Aug 2015 20:04:02 -0400 Subject: [PATCH] Fix missing variable declaration Fixes #405 --- harness/testIntl.js | 1 + 1 file changed, 1 insertion(+) diff --git a/harness/testIntl.js b/harness/testIntl.js index 465d4b3b81..61340d48b2 100644 --- a/harness/testIntl.js +++ b/harness/testIntl.js @@ -1193,6 +1193,7 @@ function isCanonicalizedStructurallyValidTimeZoneName(timeZone) { * @exception if the test fails. */ function testArraysAreSame(expected, actual) { + var i; for (i = 0; i < Math.max(actual.length, expected.length); i++) { if (actual[i] !== expected[i]) { $ERROR("Result array element at index " + i + " should be \"" +