Commit 77a38fb5 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

test_multiline_division_1 -> test_division_on_line_continuation

parent 61cdede9
...@@ -41,14 +41,14 @@ class testFixTraceDivision(FixerTestCase): ...@@ -41,14 +41,14 @@ class testFixTraceDivision(FixerTestCase):
a = """division_traced(0,1 * 2 , 3)""" a = """division_traced(0,1 * 2 , 3)"""
self.check(b, a) self.check(b, a)
def test_multiline_division_1(self): def test_division_on_line_continuation(self):
b = """x \ b = """x \
/ y""" / y"""
a = """ division_traced(0,x \ a = """ division_traced(0,x \
, y)""" , y)"""
self.check(b, a) self.check(b, a)
def test_multiline_division_2(self): def test_multiline_division(self):
b = """foo = \ b = """foo = \
x / y""" x / y"""
a = """foo = \ a = """foo = \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment