diff --git a/python/testData/highlighting/async.py b/python/testData/highlighting/async.py index 545f5ebf2c91..9749386d4d55 100644 --- a/python/testData/highlighting/async.py +++ b/python/testData/highlighting/async.py @@ -13,16 +13,16 @@ async = 1 def regular(xs): async def quux(): - async for x in xs: + async for x in xs: pass - async with xs: + async with xs: pass - async for x in xs: + async for x in xs: pass - async with xs: + async with xs: pass return async