summaryrefslogtreecommitdiff
path: root/harness/testIntl.js
diff options
context:
space:
mode:
Diffstat (limited to 'harness/testIntl.js')
-rw-r--r--harness/testIntl.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/harness/testIntl.js b/harness/testIntl.js
index 5311939bc..4fd4f4348 100644
--- a/harness/testIntl.js
+++ b/harness/testIntl.js
@@ -14,25 +14,21 @@ author: Norbert Lindenberg
/**
* @description Calls the provided function for every service constructor in
- * the Intl object, until f returns a falsy value. It returns the result of the
- * last call to f, mapped to a boolean.
+ * the Intl object.
* @param {Function} f the function to call for each service constructor in
* the Intl object.
* @param {Function} Constructor the constructor object to test with.
- * @result {Boolean} whether the test succeeded.
*/
function testWithIntlConstructors(f) {
var constructors = ["Collator", "NumberFormat", "DateTimeFormat"];
- return constructors.every(function (constructor) {
+ constructors.forEach(function (constructor) {
var Constructor = Intl[constructor];
- var result;
try {
- result = f(Constructor);
+ f(Constructor);
} catch (e) {
e.message += " (Testing with " + constructor + ".)";
throw e;
}
- return result;
});
}