From 259670cbbfb3d888707e0b5234b5bc6fa9f58440 Mon Sep 17 00:00:00 2001 From: paulklint Date: Thu, 4 Apr 2024 14:06:23 +0200 Subject: [PATCH] Commented out type incorrect asserts --- .../rascalmpl/library/lang/rascal/tests/basic/Functions.rsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/rascalmpl/library/lang/rascal/tests/basic/Functions.rsc b/src/org/rascalmpl/library/lang/rascal/tests/basic/Functions.rsc index eff38a9960f..47423ab6655 100644 --- a/src/org/rascalmpl/library/lang/rascal/tests/basic/Functions.rsc +++ b/src/org/rascalmpl/library/lang/rascal/tests/basic/Functions.rsc @@ -303,11 +303,11 @@ test bool selfApplyCurry() { func = curry(curry, addition); - assert int(int)(int) _ := func; + //assert int(int)(int) _ := func; func2 = func(1); - assert int(int) _ := func2; + //assert int(int) _ := func2; return func2(1) == 2; }