From b0e6796a95cb6a5eacb13af7eb4b9cd868556f98 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 7 Apr 2016 11:21:39 -0700 Subject: [PATCH] alien.prettyprint: forgot to commit the tests fixes. --- basis/alien/prettyprint/prettyprint-tests.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/alien/prettyprint/prettyprint-tests.factor b/basis/alien/prettyprint/prettyprint-tests.factor index 7c1ac65f3c..d612b8db5e 100644 --- a/basis/alien/prettyprint/prettyprint-tests.factor +++ b/basis/alien/prettyprint/prettyprint-tests.factor @@ -9,7 +9,7 @@ FUNCTION: int function_test ( float x, int[4][FOO] y, char* z, ushort *w ) { "USING: alien.c-types alien.syntax ; IN: alien.prettyprint.tests FUNCTION: int function_test - ( float x, int[4][FOO] y, char* z, ushort* w ) ; inline + ( float x, int[4][FOO] y, char* z, ushort* w ) " } [ [ \ function_test see ] with-string-writer ] unit-test @@ -20,7 +20,7 @@ FUNCTION-ALIAS: function-test int function_test { "USING: alien.c-types alien.syntax ; IN: alien.prettyprint.tests FUNCTION-ALIAS: function-test int function_test - ( float x, int[4][FOO] y, char* z, ushort* w ) ; inline + ( float x, int[4][FOO] y, char* z, ushort* w ) " } [ [ \ function-test see ] with-string-writer ] unit-test @@ -66,7 +66,7 @@ CALLBACK: void callback-test ( int x, float[4] y ) { "USING: alien.c-types alien.syntax ; IN: alien.prettyprint.tests -CALLBACK: void callback-test ( int x, float[4] y ) ; +CALLBACK: void callback-test ( int x, float[4] y ) " } [ [ \ callback-test see ] with-string-writer ] unit-test