diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md index 4d3cf2d1c919..7517b0f0ea6e 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-beta.1 (2024-10-22) +## 1.0.0-beta.1 (2024-10-23) ### Features Added diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/README.md b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/README.md index 5f181658a03e..64c546b51d1d 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/README.md +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/README.md @@ -55,7 +55,7 @@ Create a file `PlaywrightServiceSetup.cs` in the root directory with the below c ```C# Snippet:Sample2_SetDefaultAuthenticationMechanism using Azure.Developer.MicrosoftPlaywrightTesting.NUnit; -namespace PlaywrightATests; // Remember to change this as per your project namespace +namespace PlaywrightTests; // Remember to change this as per your project namespace [SetUpFixture] public class PlaywrightServiceSetup : PlaywrightServiceNUnit {}; diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample2_SetDefaultAuthenticationMechanism.md b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample2_SetDefaultAuthenticationMechanism.md index d8fd28f8d7eb..4c9c94f52a49 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample2_SetDefaultAuthenticationMechanism.md +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample2_SetDefaultAuthenticationMechanism.md @@ -11,7 +11,7 @@ This guide will walk you through the steps to integrate your Playwright project ```C# Snippet:Sample2_SetDefaultAuthenticationMechanism using Azure.Developer.MicrosoftPlaywrightTesting.NUnit; -namespace PlaywrightATests; // Remember to change this as per your project namespace +namespace PlaywrightTests; // Remember to change this as per your project namespace [SetUpFixture] public class PlaywrightServiceSetup : PlaywrightServiceNUnit {}; diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample1_CustomisingServiceParameters.cs b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample1_CustomisingServiceParameters.cs index aaaf15ee8fe4..17d6d47fccc6 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample1_CustomisingServiceParameters.cs +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample1_CustomisingServiceParameters.cs @@ -12,7 +12,7 @@ namespace PlaywrightTests; #if SNIPPET public class PlaywrightServiceSetup : PlaywrightServiceNUnit #else -public class Sample2ServiceSetup : PlaywrightServiceNUnit +public class Sample1ServiceSetup : PlaywrightServiceNUnit #endif { public static readonly TokenCredential managedIdentityCredential = new ManagedIdentityCredential(); @@ -20,7 +20,7 @@ public class Sample2ServiceSetup : PlaywrightServiceNUnit #if SNIPPET public PlaywrightServiceSetup() : base(managedIdentityCredential) {} #else - public Sample2ServiceSetup() : base(managedIdentityCredential) {} + public Sample1ServiceSetup() : base(managedIdentityCredential) {} #endif } #endregion \ No newline at end of file diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample2_SetDefaultAuthenticationMechanism.cs b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample2_SetDefaultAuthenticationMechanism.cs index 6cf327b7d468..1c422e8157a9 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample2_SetDefaultAuthenticationMechanism.cs +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample2_SetDefaultAuthenticationMechanism.cs @@ -4,7 +4,7 @@ #region Snippet:Sample2_SetDefaultAuthenticationMechanism using Azure.Developer.MicrosoftPlaywrightTesting.NUnit; -namespace PlaywrightATests; // Remember to change this as per your project namespace +namespace PlaywrightTests; // Remember to change this as per your project namespace [SetUpFixture] #if SNIPPET diff --git a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md index 4d3cf2d1c919..7517b0f0ea6e 100644 --- a/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md +++ b/sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-beta.1 (2024-10-22) +## 1.0.0-beta.1 (2024-10-23) ### Features Added