Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
[release/2.2] build-test - fix TestWrapper CS warnings (#19180)
Browse files Browse the repository at this point in the history
  • Loading branch information
4creators authored and echesakov committed Oct 24, 2018
1 parent e4a2a31 commit cbe79dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runtest.proj
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
}
catch(Exception ex)
{
sErrorText = "Unable to read error file: " + errorFile%3B
sErrorText = $"Unable to read error file: {errorFile}\n{ex}"%3B
}
string outputText = null%3B
Expand All @@ -261,7 +261,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
}
catch(Exception ex)
{
outputText = "Unable to read output file: " + outputFile%3B
outputText = $"Unable to read error file: {outputFile}\n{ex}"%3B
}
string msg = infraEx != null ? "Test Infrastructure Failure: " + infraEx.ToString()
Expand Down

0 comments on commit cbe79dc

Please sign in to comment.