Skip to content

Commit

Permalink
Correct quote type in test case
Browse files Browse the repository at this point in the history
Black always uses double quotes. Test would also fail on this, but that's not the reason the test is failing to begin with.
  • Loading branch information
KindaOK committed Nov 9, 2022
1 parent 7b2c2ca commit 8429ebc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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)
Expand All @@ -12,7 +12,7 @@
1,
2,
3,
)[0] == {'bar': 'baz'}
)[0] == {"bar": "baz"}

a = [
1,
Expand Down

0 comments on commit 8429ebc

Please sign in to comment.