--- a/test/stmt-for.test.expected
+++ b/test/stmt-while.test.log
@@ -1,9 +1,5 @@
 FUNCTION func:BOOL;
-i := 0;
-
-WHILE i < 5;
- DO
+WHILE x < 10 DO
 x := x / 2;
 
-((i:=i+1)-1);
 END_WHILE