]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/roles/roles-tests.factor
factor: clean up spaces in -tests files
[factor.git] / extra / roles / roles-tests.factor
index 95c2fe11388445a65b8e4cac070e2f5cec819931..67e7f8d991c4b8e9217214688011e5d35c9aeeac 100644 (file)
@@ -43,17 +43,17 @@ ROLE: bong bowl ;
 SYMBOL: spong
 
 [ [ spong { spoon bong } { } define-tuple-class-with-roles ] with-compilation-unit ]
-[ role-slot-overlap? ] must-fail-with 
+[ role-slot-overlap? ] must-fail-with
 
 [ [ spong { spoon bong } { } define-role ] with-compilation-unit ]
-[ role-slot-overlap? ] must-fail-with 
+[ role-slot-overlap? ] must-fail-with
 
 ! can't try to inherit multiple tuple classes
 TUPLE: tool blade ;
 SYMBOL: knife
 
 [ knife { utensil tool } { } define-tuple-class-with-roles ]
-[ multiple-inheritance-attempted? ] must-fail-with 
+[ multiple-inheritance-attempted? ] must-fail-with
 
 ! make sure method dispatch works
 GENERIC: poke ( pokee poker -- result )