| commit | e9aea74a77288f01d9656fd47a1bf9f8f3bc5a15 | [log] [tgz] |
|---|---|---|
| author | Anthony Sottile <asottile@umich.edu> | Sat Jul 15 12:56:51 2017 -0700 |
| committer | Anthony Sottile <asottile@umich.edu> | Sat Jul 15 13:06:38 2017 -0700 |
| tree | c8f2abcad3a3b8b21ed892be852a24940bcf362e | |
| parent | ea227f024bd89d638aea319c92806737e3375979 [diff] [blame] |
Upgrade add-trailing-comma to 0.4.1
diff --git a/tests/string_fixer_test.py b/tests/string_fixer_test.py index 0429b95..a65213b 100644 --- a/tests/string_fixer_test.py +++ b/tests/string_fixer_test.py
@@ -22,16 +22,20 @@ # Docstring ('""" Foo """', '""" Foo """', 0), ( - textwrap.dedent(""" + textwrap.dedent( + """ x = " \\ foo \\ "\n - """), - textwrap.dedent(""" + """, + ), + textwrap.dedent( + """ x = ' \\ foo \\ '\n - """), + """, + ), 1, ), ('"foo""bar"', "'foo''bar'", 1),