diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample1_CustomisingServiceParameters.md b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample1_CustomisingServiceParameters.md index a2eeefe04b61b..f6f772ea3150f 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample1_CustomisingServiceParameters.md +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample1_CustomisingServiceParameters.md @@ -15,17 +15,15 @@ This guide explains the different options available to you in the Azure.Develope - - - + diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Utility/ReporterUtils.cs b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Utility/ReporterUtils.cs index 9923a81ab1f38..5d7e3f4fc7af5 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Utility/ReporterUtils.cs +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Utility/ReporterUtils.cs @@ -44,7 +44,7 @@ internal static string GetRunName(CIInfo ciInfo) { string GIT_VERSION_COMMAND = "git --version"; string GIT_REV_PARSE = "git rev-parse --is-inside-work-tree"; - string GIT_COMMIT_MESSAGE_COMMAND = "git log -1 --pretty=%B"; + string GIT_COMMIT_MESSAGE_COMMAND = "git log -1 --pretty=format:\"%s\""; if (ciInfo.Provider == CIConstants.s_gITHUB_ACTIONS && Environment.GetEnvironmentVariable("GITHUB_EVENT_NAME") == "pull_request") diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/CiInfoProviderTests.cs b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/CiInfoProviderTests.cs index 5c18556d0b396..d78407b51652c 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/CiInfoProviderTests.cs +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/CiInfoProviderTests.cs @@ -11,7 +11,6 @@ namespace Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Tests.Utility { [TestFixture] - [Parallelizable(ParallelScope.Self)] public class CiInfoProviderTests { private Dictionary _originalEnvironmentVariables = new(); diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/ReporterUtilsTests.cs b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/ReporterUtilsTests.cs index 2456c11617d41..db7afd1d55e9f 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/ReporterUtilsTests.cs +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Utility/ReporterUtilsTests.cs @@ -11,7 +11,6 @@ namespace Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Tests.Utility; [TestFixture] -[Parallelizable(ParallelScope.Self)] public class ReporterUtilsTests { private static string GetToken(Dictionary claims, DateTime? expires = null)