[KSS-checkins] r45748 - kukit/kukit.js/branch/gotcha-code-cleanup/tests

reebalazs at codespeak.net reebalazs at codespeak.net
Thu Aug 16 20:05:14 CEST 2007


Author: reebalazs
Date: Thu Aug 16 20:05:13 2007
New Revision: 45748

Modified:
   kukit/kukit.js/branch/gotcha-code-cleanup/tests/test_kssparser.js
Log:
Adjust test

Modified: kukit/kukit.js/branch/gotcha-code-cleanup/tests/test_kssparser.js
==============================================================================
--- kukit/kukit.js/branch/gotcha-code-cleanup/tests/test_kssparser.js	(original)
+++ kukit/kukit.js/branch/gotcha-code-cleanup/tests/test_kssparser.js	Thu Aug 16 20:05:13 2007
@@ -305,13 +305,12 @@
         txt= "(a, b c )";
         src = new kukit.tk.Cursor(txt);
         this.assertParsingError(kukit.kssp.MethodArgs, src, kukit.kssp.openparent, true,
-        his.assertParsingError(kukit.kssp.MethodArgs, src, kukit.kssp.openparent, true,
-            'Wrong method argument [b c] : value cannot have spaces.', 9);
+            'Wrong method argument [b c] : value cannot have spaces', 9);
 
         txt= "(a, b 'x' )";
         src = new kukit.tk.Cursor(txt);
         this.assertParsingError(kukit.kssp.MethodArgs, src, kukit.kssp.openparent, true,
-             'Unexpected token : [string] found, [comma] was expected.', 11);
+            'Unexpected token : [string] found, [comma] was expected.', 11);
 
     };
 


More information about the Kukit-checkins mailing list