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

Commit

Permalink
build-test - fix TestWrapper CS warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
4creators committed Jul 27, 2018
1 parent 9b25ab8 commit fcfd36f
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 @@ -258,7 +258,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 @@ -270,7 +270,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 fcfd36f

Please sign in to comment.