From 59a60a319bead55aa188e8cb1516d5e5146c4492 Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Sun, 15 Feb 2009 23:59:38 +0000 Subject: Reorganize the tests into one file per test. No other changes. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@744782 13f79535-47bb-0310-9956-ffa450edef68 --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test.js') diff --git a/test/test.js b/test/test.js index a4aa32e1..f3990966 100644 --- a/test/test.js +++ b/test/test.js @@ -194,14 +194,14 @@ var numFailures = 0; function runAllTestsConsole() { var numTests = 0; var debug = false; - for (var t in tests) { + for (var t in couchTests) { p(t); if (t == "utf8") { p("We skip the utf8 test because it fails due to problems in couch_js.c"); p("Run the in-browser tests to verify utf8.\n"); } else { numTests += 1; - var testFun = tests[t]; + var testFun = couchTests[t]; runTestConsole(testFun, debug); } } -- cgit v1.2.3