diff --git a/README.md b/README.md index 71b98a2..dc6aa10 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Xunit logger can generate xml reports in the xunit v2 format (https://xunit.gith A path for the report file can be specified as follows: ``` -> dotnet test --test-adapter-path:. --logger:xunit;LogFilePath=test_result.xml +> dotnet test --test-adapter-path:. --logger:"xunit;LogFilePath=test_result.xml" ``` `test_result.xml` will be generated in the same directory as `test.csproj`. @@ -29,4 +29,4 @@ A path for the report file can be specified as follows: **Note:** the arguments to `--logger` should be in quotes since `;` is treated as a command delimiter in shell. ## License -MIT +MIT \ No newline at end of file diff --git a/src/Xunit.Xml.TestLogger/XunitXmlTestLogger.cs b/src/Xunit.Xml.TestLogger/XunitXmlTestLogger.cs index 224bf85..3890d49 100644 --- a/src/Xunit.Xml.TestLogger/XunitXmlTestLogger.cs +++ b/src/Xunit.Xml.TestLogger/XunitXmlTestLogger.cs @@ -533,7 +533,7 @@ private static string OutcomeToString(TestOutcome outcome) return "Pass"; case TestOutcome.Skipped: - return "Skipped"; + return "Skip"; default: return "Unknown";