Skip to content

Commit

Permalink
remove w, add a
Browse files Browse the repository at this point in the history
  • Loading branch information
lohia-shalini committed Feb 12, 2025
1 parent 484ccdc commit 450d22b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dotnet/utils/TestUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -471,15 +471,15 @@ ProcessStartInfo GetDiffFileProcessDependingOnOs(string output, string expectedO
return new ProcessStartInfo
{
FileName = @"powershell.exe",
Arguments = $"-c \"diff -u -w (cat {output}) (cat {expectedOutput}) > {diffFile}\"",
Arguments = $"-c \"diff -u -a (cat {output}) (cat {expectedOutput}) > {diffFile}\"",
UseShellExecute = false,
CreateNoWindow = false,
RedirectStandardError = true
};
return new ProcessStartInfo
{
FileName = @"bash",
Arguments = $"-c \"diff -u -w {output} {expectedOutput} > {diffFile}\"",
Arguments = $"-c \"diff -u -a {output} {expectedOutput} > {diffFile}\"",
UseShellExecute = false,
CreateNoWindow = false,
RedirectStandardError = true
Expand Down

0 comments on commit 450d22b

Please sign in to comment.