From 778d25f38aac0c0c062289d80234c8b6248c839c Mon Sep 17 00:00:00 2001 From: chris-rudmin Date: Thu, 24 May 2012 11:43:55 -0400 Subject: [PATCH] Moved test start to second jsperanto instance --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 73d5b3c..08deefb 100644 --- a/test/test.js +++ b/test/test.js @@ -31,7 +31,6 @@ asyncTest("translation", function() { t('infinite'); equals(true,true,"recursive nested lookup should not crash"); - start(); },o); o.getSuffixMethod = function(count){ @@ -52,6 +51,7 @@ asyncTest("translation", function() { equals(t('countCustomSuffix',{count:"string"}),"I have many. The count is string"); equals(t('countCustomSuffix',{count:"1"}),"I have exactly one. The count is 1"); equals(t('countCustomSuffix',{count:"01"}),"I have exactly one. The count is 01"); + start(); },o); });