From d8484df07575f3e0e7cd4cdeff829ea153141e1f Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 20 Aug 2023 09:54:36 -0500 Subject: [PATCH] basic async_with test passes under native code --- tests/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.py b/tests/run-tests.py index 8492943566..45b4ebf536 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -505,7 +505,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): {"basics/%s.py" % t for t in "gen_yield_from_close generator_name".split()} ) # require raise_varargs, generator name skip_tests.update( - {"basics/async_%s.py" % t for t in "await with with2 with_break with_return".split()} + {"basics/async_%s.py" % t for t in "with with2 with_break with_return".split()} ) # require async_with skip_tests.update( {"basics/%s.py" % t for t in "try_reraise try_reraise2".split()}