From 4439b41170d694c84d1d0681daabc0169edc1c2f Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Tue, 8 Sep 2015 12:25:10 +0300 Subject: [PATCH] Updated test data --- python/testData/highlighting/async.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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