From 5bc57689f870934e39cf6dea8d5bdd9ca3e586b3 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Fri, 8 Feb 2008 14:03:45 +0000 Subject: [PATCH] Tweaked some tests so that they are now correct --- testcases/automatic/usage-check-3.occ.test | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testcases/automatic/usage-check-3.occ.test b/testcases/automatic/usage-check-3.occ.test index 7804881..0633097 100644 --- a/testcases/automatic/usage-check-3.occ.test +++ b/testcases/automatic/usage-check-3.occ.test @@ -21,13 +21,13 @@ PROC m() %FAIL Modulo items in SEQ replicator (unsafe) SEQ i = 0 FOR 6 PAR - a[(i + 1) REM 4] := 3 - a[i] := 4 + a[(i + 1) REM 6] := 3 + a[0] := 4 %PASS Modulo items in SEQ replicator (safe) SEQ i = 0 FOR 6 PAR - a[(i + 1) REM 5] := 3 - a[i] := 4 + a[(i + 1) REM 7] := 3 + a[0] := 4 %