From ec4fa8a3a9f6a0ac72c1bdb92f83fd4b8576e027 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 12 Oct 2018 23:21:36 +0200 Subject: [PATCH] WIP2 --- tst/testinstall/boolean.tst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tst/testinstall/boolean.tst b/tst/testinstall/boolean.tst index 7744cd4404..58e0bab7ec 100644 --- a/tst/testinstall/boolean.tst +++ b/tst/testinstall/boolean.tst @@ -80,13 +80,13 @@ Error, must be 'true' or 'false' or a filter (not a function) gap> ReturnTrue and true; Error, must be 'true' or 'false' or a filter (not a function) gap> IsAssociative and ReturnTrue; -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> IsAssociative and true; -Error, must be a filter (not a function) +Error, must be a filter (not a boolean or fail) gap> IsAssociative and Center; -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> IsAssociative and FirstOp; -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> true and IsAssociative; Error, must be 'true' or 'false' (not a function) gap> Center and IsAssociative; @@ -112,13 +112,13 @@ Error, must be 'true' or 'false' or a filter (not a function) gap> function() return ReturnTrue and true; end(); Error, must be 'true' or 'false' or a filter (not a function) gap> function() return IsAssociative and ReturnTrue; end(); -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> function() return IsAssociative and true; end(); -Error, must be a filter (not a function) +Error, must be a filter (not a boolean or fail) gap> function() return IsAssociative and Center; end(); -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> function() return IsAssociative and FirstOp; end(); -Error, must be a filter (not a function) +Error, must be a filter (not a function) gap> function() return true and IsAssociative; end(); Error, must be 'true' or 'false' (not a function) gap> function() return Center and IsAssociative; end();