]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/locals/locals-tests.factor
factor: clean up spaces in -tests files
[factor.git] / basis / locals / locals-tests.factor
index a39bc658ea3f6377cfa1901e56e883a7f66624c3..a4f308725eb401f8e728ea42b67c3abfe417ed2a 100644 (file)
@@ -389,7 +389,7 @@ M:: integer lambda-method-forget-test ( a -- b ) a ;
     "USING: locals fry math ; 1 '[ [let 10 :> A A _ + ] ]"
     eval( -- ) call
 ] [ error>> >r/r>-in-fry-error? ] must-fail-with
-    
+
 :: (funny-macro-test) ( obj quot -- ? ) obj { [ quot call ] } 1&& ; inline
 : funny-macro-test ( n -- ? ) [ odd? ] (funny-macro-test) ;
 
@@ -470,13 +470,13 @@ M:: integer lambda-method-forget-test ( a -- b ) a ;
 :: erg's-:>-bug ( n ? -- n ) ? [ n :> n n ] [ n :> b b ] if ;
 
 [ 3 ] [ 3 f erg's-:>-bug ] unit-test
-    
+
 [ 3 ] [ 3 t erg's-:>-bug ] unit-test
 
 :: erg's-:>-bug-2 ( n ? -- n ) ? n '[ _ :> n n ] [ n :> b b ] if ;
 
 [ 3 ] [ 3 f erg's-:>-bug-2 ] unit-test
-    
+
 [ 3 ] [ 3 t erg's-:>-bug-2 ] unit-test
 
 ! dharmatech found this problem