From 1e5caa0dc349750c3eb6c5f448c7aab524e3ec38 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 20 Jun 2023 01:32:34 -0700 Subject: [PATCH] Remove test failing on 3.12 (#15478) --- test-data/unit/check-newsyntax.test | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test-data/unit/check-newsyntax.test b/test-data/unit/check-newsyntax.test index 63284c34bd8b..cfcbfc598c51 100644 --- a/test-data/unit/check-newsyntax.test +++ b/test-data/unit/check-newsyntax.test @@ -105,11 +105,6 @@ main:5: error: "str" has no attribute "x" async def f(): results = [i async for i in aiter() if i % 2] # E: Async comprehensions are only supported in Python 3.6 and greater - -[case testNewSyntaxFstringError] -# flags: --python-version 3.5 -f'' # E: Format strings are only supported in Python 3.6 and greater - [case testNewSyntaxFStringBasics] # flags: --python-version 3.6 f'foobar'