X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/7e6d3fac197395b0a2b380cc60811536fe23626b..8a16b25fb1145e5b7de9c322e52167e8f6a59c79:/tests/data/py_38/pep_572_remove_parens.py

diff --git a/tests/data/py_38/pep_572_remove_parens.py b/tests/data/py_38/pep_572_remove_parens.py
index 4e95fb0..b952b29 100644
--- a/tests/data/py_38/pep_572_remove_parens.py
+++ b/tests/data/py_38/pep_572_remove_parens.py
@@ -62,7 +62,6 @@ async def await_the_walrus():
     with (x := await a, y := await b):
         pass
 
-    # Ideally we should remove one set of parentheses
     with ((x := await a, y := await b)):
         pass
 
@@ -137,8 +136,7 @@ async def await_the_walrus():
     with (x := await a, y := await b):
         pass
 
-    # Ideally we should remove one set of parentheses
-    with ((x := await a, y := await b)):
+    with (x := await a, y := await b):
         pass
 
     with (x := await a), (y := await b):