@@ -152,7 +152,8 @@ t.$wip.testMethod(
152152 'testMethod' : 'Value with spaces and {param} inside' ,
153153 });
154154 expect (result.list.length, 1 );
155- expect (result.list[0 ].original, r"""t.$wip.testMethod(
155+ expect (result.list[0 ].original, r"""
156+ t.$wip.testMethod(
156157 'Value with spaces and $param inside',
157158)""" );
158159 expect (result.list[0 ].path, 'testMethod' );
@@ -172,7 +173,8 @@ t.$wip.complexMethod(
172173 'complexMethod' : '{someFunction}' ,
173174 });
174175 expect (result.list.length, 1 );
175- expect (result.list[0 ].original, r"""t.$wip.complexMethod(
176+ expect (result.list[0 ].original, r"""
177+ t.$wip.complexMethod(
176178 someFunction('test', param: $value),
177179)""" );
178180 expect (result.list[0 ].path, 'complexMethod' );
@@ -192,7 +194,8 @@ t.$wip.variableMethod(
192194 'variableMethod' : '{myVariable}' ,
193195 });
194196 expect (result.list.length, 1 );
195- expect (result.list[0 ].original, r'''t.$wip.variableMethod(
197+ expect (result.list[0 ].original, r'''
198+ t.$wip.variableMethod(
196199 myVariable,
197200)''' );
198201 expect (result.list[0 ].path, 'variableMethod' );
0 commit comments