# HG changeset patch # User Paul Boddie # Date 1217635324 -7200 # Node ID 8d60e97e7e34a9a0fba2f683d8462b6fc65fac1e # Parent cbca9c309a1bf088ff2a1accde62f559b145fc1a Made the test work with the current code generator. diff -r cbca9c309a1b -r 8d60e97e7e34 tests/loop_while.py --- a/tests/loop_while.py Sat Aug 02 01:51:07 2008 +0200 +++ b/tests/loop_while.py Sat Aug 02 02:02:04 2008 +0200 @@ -2,8 +2,9 @@ class C: value = "hello" + x = 10 while x > 0: subvalue = "world" - x -= 1 + x = x - 1 # vim: tabstop=4 expandtab shiftwidth=4