From 4dccba72ed866b8152c8f73cff99e49698eee378 Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Tue, 20 Sep 2022 17:04:32 -0400 Subject: [PATCH] docs(release-notes): fix dotnet annotation example (#17478) --- docs/src/release-notes-csharp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/release-notes-csharp.md b/docs/src/release-notes-csharp.md index c9989061c7..430265d18d 100644 --- a/docs/src/release-notes-csharp.md +++ b/docs/src/release-notes-csharp.md @@ -294,7 +294,7 @@ namespace PlaywrightTests; [TestFixture] public class ExampleTests : PageTest { - [PlaywrightTest] + [Test] public async Task StatusBecomesSubmitted() { await Expect(Page.Locator(".status")).ToHaveTextAsync("Submitted");