diff options
-rw-r--r-- | share/www/script/couch_tests.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index f292bb1f..34c5c3aa 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -2183,14 +2183,7 @@ var tests = { for(test in repTests) if(repTests[test].init) repTests[test].init(dbA, dbB); - try { - T(CouchDB.replicate(A, B).ok); - } catch (e) { - if(window.location.host.match(/localhost/)) { - alert("Hi, the replication test failed. The most likely cause is that 'localhost' resolves to ::1 (IPv6) and CouchDB only listenes at 127.0.0.1 (IPv4). Try 127.0.0.1 to access Futon and run this test suite again."); - } - throw e; - } + T(CouchDB.replicate(A, B).ok); for(test in repTests) if(repTests[test].afterAB1) repTests[test].afterAB1(dbA, dbB); |