Diff of /test/stmt-case.test.expected [b383b0] .. [853a2a]  Maximize  Restore

Switch to side-by-side view

--- a/test/stmt-case.test.expected
+++ b/test/stmt-case.test.expected
@@ -2,12 +2,12 @@
 (*switch*)WHILE TRUE DO
 CASE value OF
  'h':
- ((c:=c+1)-1);
- ((c:=c-1)+1);
+ c:=c+1;
+ c:=c-1;
  EXIT;
  
 ELSE:
- ((c:=c-1)+1);
+ c:=c-1;
  EXIT;
 
 END_CASE