Skip to content

Commit

Permalink
Use LF line feeds in the repository
Browse files Browse the repository at this point in the history
  • Loading branch information
loganbu committed Jun 16, 2023
1 parent 29dc710 commit 3330b92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ indent_style = space
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
indent_size = 4
end_of_line = crlf
end_of_line = lf
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
Expand Down
2 changes: 1 addition & 1 deletion src/Sage.Engine.Tests/SageTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected CompilationOptions TestCompilationOptions()
/// </summary>
public static void AssertEqualGeneratedCode<TNode>(TNode actual, string expected) where TNode : SyntaxNode
{
Assert.That(actual.NormalizeWhitespace(eol: Environment.NewLine).ToFullString(), Is.EqualTo(expected));
Assert.That(actual.NormalizeWhitespace(eol: "\n").ToFullString(), Is.EqualTo(expected));
}
}
}

0 comments on commit 3330b92

Please sign in to comment.