]> gitweb.factorcode.org Git - factor.git/commitdiff
multiline: trailing space is necessary. new parser handles this case now.
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 2 Jul 2015 22:29:41 +0000 (15:29 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 2 Jul 2015 22:29:41 +0000 (15:29 -0700)
basis/multiline/multiline-tests.factor

index 90f8fd7df4a28d2c1ef53b95c50dd5b2a156b057..03dd3aabb0df8635bd0aecc865e6c2a89dabd8de 100644 (file)
@@ -1,4 +1,4 @@
-USING: accessors eval multiline sequences tools.test ;
+USING: eval multiline sequences tools.test ;
 IN: multiline.tests
 
 STRING: test-it
@@ -42,8 +42,9 @@ x
 END
 ] unit-test
 
+! there's a space after xyz
 [ "xyz \n" ] [ HEREDOC: END
-xyz
+xyz 
 END
 ] unit-test