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 47423ab6655..eff38a9960f 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; }