Skip to content

Commit 8236e8d

Browse files
authored
docs(playwrighttesting): dotnet namespace fix and CHANGELOG update (Azure#46771)
Co-authored-by: Siddharth Singha Roy <[email protected]>
1 parent b949f5a commit 8236e8d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0-beta.1 (2024-10-22)
3+
## 1.0.0-beta.1 (2024-10-23)
44

55
### Features Added
66

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Create a file `PlaywrightServiceSetup.cs` in the root directory with the below c
5555
```C# Snippet:Sample2_SetDefaultAuthenticationMechanism
5656
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;
5757

58-
namespace PlaywrightATests; // Remember to change this as per your project namespace
58+
namespace PlaywrightTests; // Remember to change this as per your project namespace
5959
6060
[SetUpFixture]
6161
public class PlaywrightServiceSetup : PlaywrightServiceNUnit {};

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/samples/Sample2_SetDefaultAuthenticationMechanism.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This guide will walk you through the steps to integrate your Playwright project
1111
```C# Snippet:Sample2_SetDefaultAuthenticationMechanism
1212
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;
1313

14-
namespace PlaywrightATests; // Remember to change this as per your project namespace
14+
namespace PlaywrightTests; // Remember to change this as per your project namespace
1515
1616
[SetUpFixture]
1717
public class PlaywrightServiceSetup : PlaywrightServiceNUnit {};

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample1_CustomisingServiceParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ namespace PlaywrightTests;
1212
#if SNIPPET
1313
public class PlaywrightServiceSetup : PlaywrightServiceNUnit
1414
#else
15-
public class Sample2ServiceSetup : PlaywrightServiceNUnit
15+
public class Sample1ServiceSetup : PlaywrightServiceNUnit
1616
#endif
1717
{
1818
public static readonly TokenCredential managedIdentityCredential = new ManagedIdentityCredential();
1919

2020
#if SNIPPET
2121
public PlaywrightServiceSetup() : base(managedIdentityCredential) {}
2222
#else
23-
public Sample2ServiceSetup() : base(managedIdentityCredential) {}
23+
public Sample1ServiceSetup() : base(managedIdentityCredential) {}
2424
#endif
2525
}
2626
#endregion

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/tests/samples/Sample2_SetDefaultAuthenticationMechanism.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#region Snippet:Sample2_SetDefaultAuthenticationMechanism
55
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;
66

7-
namespace PlaywrightATests; // Remember to change this as per your project namespace
7+
namespace PlaywrightTests; // Remember to change this as per your project namespace
88

99
[SetUpFixture]
1010
#if SNIPPET

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0-beta.1 (2024-10-22)
3+
## 1.0.0-beta.1 (2024-10-23)
44

55
### Features Added
66

0 commit comments

Comments
 (0)