Skip to content

Commit

Permalink
Fix existing Test - wrong Indenter Setting
Browse files Browse the repository at this point in the history
  • Loading branch information
awb95 committed Aug 19, 2022
1 parent 81d5125 commit 1254523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RubberduckTests/SmartIndenter/LineContinuationTests.cs
Expand Up @@ -342,7 +342,7 @@ public void MultipleFunctionCallsWorks()
var indenter = new Indenter(null, () =>
{
var s = IndenterSettingsTests.GetMockIndenterSettings();
s.IgnoreOperatorsInContinuations = false;
s.IgnoreOperatorsInContinuations = true;
return s;
});
var actual = indenter.Indent(code);
Expand Down

0 comments on commit 1254523

Please sign in to comment.