Skip to content

Commit

Permalink
Use Display instead of Print in the test (will edit later while rebas…
Browse files Browse the repository at this point in the history
…ing)
  • Loading branch information
Alexander Konovalov committed Sep 13, 2017
1 parent db8d5e7 commit 0761993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tst/testinstall/bound.tst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ gap> f();
Error, Variable: 'BADVARNAME' must have an assigned value

# Printing IsBound statements
gap> Print(function(l,n) return IsBound(l[n]);end);
gap> Display(function(l,n) return IsBound(l[n]);end);
function ( l, n )
return IsBound( l[n] );
end
gap> Print(function(l,n) return IsBound(l.(n));end);
gap> Display(function(l,n) return IsBound(l.(n));end);
function ( l, n )
return IsBound( l.(n) );
end
Expand Down

0 comments on commit 0761993

Please sign in to comment.