diff --git a/src/org/rascalmpl/library/lang/rascal/tests/library/util/ReflectiveTests.rsc b/src/org/rascalmpl/library/lang/rascal/tests/library/util/ReflectiveTests.rsc index 06739ef33d..b10804d0ad 100644 --- a/src/org/rascalmpl/library/lang/rascal/tests/library/util/ReflectiveTests.rsc +++ b/src/org/rascalmpl/library/lang/rascal/tests/library/util/ReflectiveTests.rsc @@ -7,7 +7,7 @@ import util::FileSystem; import util::Reflective; import util::UUID; -private loc testLibraryLoc = |memory://myTestLibrary-/|; +private loc testLibraryLoc = |memory://myTestLibrary-/|; test bool commonSuffixCommutative(list[str] a, list[str] b) = commonSuffix(a, b) == commonSuffix(b, a); test bool cs1() = commonSuffix([], ["c"]) == 0;