From 7ae084aaa13b8c1b66410de44f0b9f86ab798c5c Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Wed, 18 Sep 2019 13:33:14 +0100 Subject: [PATCH] fix tests --- tests/data/pep_572.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/data/pep_572.py b/tests/data/pep_572.py index 563e8a7..9e429f9 100644 --- a/tests/data/pep_572.py +++ b/tests/data/pep_572.py @@ -39,5 +39,5 @@ foo(b := 2, a=1) foo((b := 2), a=1) foo(c=(b := 2), a=1) -while x:= f(x): +while x := f(x): pass -- 2.39.2