Skip to content

Commit

Permalink
Update output expectation for trailing comma reformatting test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Feb 3, 2021
1 parent f154042 commit d262d29
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions tests/data/function_trailing_comma.py
Expand Up @@ -23,6 +23,7 @@ def xxxxxxxxxxxxxxxxxxxxxxxxxxxx() -> Set[

# output


def f(
a,
):
Expand Down Expand Up @@ -61,16 +62,19 @@ def f(
"a": 1,
"b": 2,
}["a"]
if a == {
"a": 1,
"b": 2,
"c": 3,
"d": 4,
"e": 5,
"f": 6,
"g": 7,
"h": 8,
}["a"]:
if (
a
== {
"a": 1,
"b": 2,
"c": 3,
"d": 4,
"e": 5,
"f": 6,
"g": 7,
"h": 8,
}["a"]
):
pass


Expand Down

0 comments on commit d262d29

Please sign in to comment.