From 8429ebc2eabdd3ec984505ccff265e692cb49f7d Mon Sep 17 00:00:00 2001 From: KindaOK <27974340+KindaOK@users.noreply.github.com> Date: Wed, 9 Nov 2022 02:20:28 -0500 Subject: [PATCH] Correct quote type in test case Black always uses double quotes. Test would also fail on this, but that's not the reason the test is failing to begin with. --- tests/data/simple_cases/deep_trailing_commas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/data/simple_cases/deep_trailing_commas.py b/tests/data/simple_cases/deep_trailing_commas.py index b664d829ee5..cdf1e21a485 100644 --- a/tests/data/simple_cases/deep_trailing_commas.py +++ b/tests/data/simple_cases/deep_trailing_commas.py @@ -1,4 +1,4 @@ -assert foo(1, 2, 3,)[0] == {'bar': 'baz'} +assert foo(1, 2, 3,)[0] == {"bar": "baz"} a = [1,][2]() b = [1,][2](3) @@ -12,7 +12,7 @@ 1, 2, 3, -)[0] == {'bar': 'baz'} +)[0] == {"bar": "baz"} a = [ 1,