Skip to content

Commit 1254523

Browse files
committed
Fix existing Test - wrong Indenter Setting
1 parent 81d5125 commit 1254523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RubberduckTests/SmartIndenter/LineContinuationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ public void MultipleFunctionCallsWorks()
342342
var indenter = new Indenter(null, () =>
343343
{
344344
var s = IndenterSettingsTests.GetMockIndenterSettings();
345-
s.IgnoreOperatorsInContinuations = false;
345+
s.IgnoreOperatorsInContinuations = true;
346346
return s;
347347
});
348348
var actual = indenter.Indent(code);

0 commit comments

Comments
 (0)