Skip to content

Commit

Permalink
tests: replace CRLF with LF
Browse files Browse the repository at this point in the history
  • Loading branch information
luantranminh committed Aug 10, 2024
1 parent 06f894a commit c1e7eab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/Atlas.Provider.Test/GenerateSchemaTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public void Can_generate_script(string providerName, string expectedFile)
string output = process.StandardOutput.ReadToEnd();
string error = process.StandardError.ReadToEnd();
process.WaitForExit();
string normalizedOutput = output.Replace("\r\n", "\n");
Assert.Equal(FileReader.Read(expectedFile), output);
Assert.Equal("", error);
}
Expand Down

0 comments on commit c1e7eab

Please sign in to comment.