summaryrefslogtreecommitdiff
path: root/harness
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2017-12-21 12:08:13 -0800
committerRick Waldron <waldron.rick@gmail.com>2017-12-21 16:46:55 -0500
commit064ce66a5b82cbc53add521838d6609d2874eb66 (patch)
treeb0bf413e7400345b39430c9302592ac9d29266e8 /harness
parent52980ef496a7312f6a32f45813d3b592471f8f3d (diff)
downloadqtdeclarative-testsuites-064ce66a5b82cbc53add521838d6609d2874eb66.tar.gz
Remove unused return value for testOption
Diffstat (limited to 'harness')
-rw-r--r--harness/testIntl.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/harness/testIntl.js b/harness/testIntl.js
index 3f04db24f..d799ecd88 100644
--- a/harness/testIntl.js
+++ b/harness/testIntl.js
@@ -638,7 +638,6 @@ function isCanonicalizedStructurallyValidLanguageTag(locale) {
* @param {boolean} noReturn whether the resulting value of the property is not returned.
* @param {boolean} isILD whether the resulting value of the property is implementation and locale dependent.
* @param {object} extra additional option to pass along, properties are value -> {option: value}.
- * @return {boolean} whether the test succeeded.
*/
function testOption(Constructor, property, type, values, fallback, testOptions) {
var isOptional = testOptions !== undefined && testOptions.isOptional === true;
@@ -750,8 +749,6 @@ function testOption(Constructor, property, type, values, fallback, testOptions)
}
}
}
-
- return true;
}