summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <wohali@users.noreply.github.com>2018-10-23 11:37:41 -0400
committerGitHub <noreply@github.com>2018-10-23 11:37:41 -0400
commitc3069d17f1e90c7b020d9bbe1f15f5af5408fb8b (patch)
treeab1c8480e78c56c17406a2fdb1f5841be98e18f1
parentd02d6140afa0b2eca42b9d20bf2d15f6058e9be9 (diff)
downloadcouchdb-c3069d17f1e90c7b020d9bbe1f15f5af5408fb8b.tar.gz
Fix JS/Python test harness for Python 2.6 (#1674)
-rwxr-xr-xtest/javascript/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/javascript/run b/test/javascript/run
index 11f9faee2..ec12431b0 100755
--- a/test/javascript/run
+++ b/test/javascript/run
@@ -146,7 +146,7 @@ def main():
sys.stderr.write("======================================================="
+ os.linesep)
sys.stderr.write("JavaScript tests complete." + os.linesep)
- sys.stderr.write(" Failed: {}. Skipped or passed: {}.".format(
+ sys.stderr.write(" Failed: {0}. Skipped or passed: {1}.".format(
failed, passed) + os.linesep)
exit(failed > 0)