]> gitweb.factorcode.org Git - factor.git/commitdiff
fjsc: fix unit tests
authorchris.double <chris.double@double.co.nz>
Fri, 15 Dec 2006 06:29:35 +0000 (06:29 +0000)
committerchris.double <chris.double@double.co.nz>
Fri, 15 Dec 2006 06:29:35 +0000 (06:29 +0000)
libs/fjsc/tests.factor

index 95d7df9334105ef5311885ea9721282cb78f10b7..de1d73b39234e4f89b63f204d2a9fec5009d998c 100644 (file)
@@ -28,11 +28,11 @@ IN: temporary
   "123 \"hello\" alert" 'expression' parse car parse-result-parsed fjsc-compile 
 ] unit-test
  
-{ "factor.words[\"foo\"]=function() { factor.data_stack.push(123);factor.data_stack.push('hello');}" } [
+{ "factor.words[\"foo\"]=function() { factor.data_stack.push(123);factor.data_stack.push('hello')}" } [
   ": foo 123 \"hello\" ;" 'define' parse car parse-result-parsed fjsc-compile 
 ] unit-test
 
-{ "factor.words[\"foo\"]=function() { factor.data_stack.push(123);factor.data_stack.push('hello');}" } [
+{ "factor.words[\"foo\"]=function() { factor.data_stack.push(123);factor.data_stack.push('hello')}" } [
   ": foo 123 \"hello\" ;" 'expression' parse car parse-result-parsed fjsc-compile 
 ] unit-test