From e68271bf0002e80e8a6a03b1fd54487df20b9a6c Mon Sep 17 00:00:00 2001 From: John Chesshir Date: Tue, 7 Jan 2025 07:04:13 -0600 Subject: [PATCH] Update Action-Attributes.md (#1006) Fix what appears to be a copy/paste error in the documentation. The output for Test One and Test Two was changed, but the actual output did not reflect the change. --- docs/articles/nunit/extending-nunit/Action-Attributes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/articles/nunit/extending-nunit/Action-Attributes.md b/docs/articles/nunit/extending-nunit/Action-Attributes.md index a470929b3..a8df77f7b 100644 --- a/docs/articles/nunit/extending-nunit/Action-Attributes.md +++ b/docs/articles/nunit/extending-nunit/Action-Attributes.md @@ -335,10 +335,10 @@ public class ActionAttributeSampleTests ```text Before Suite: Hello, from ActionAttributeSampleTests.{no method}. Before Case: Hello, from ActionAttributeSampleTests.SimpleTestOne. - Test ran. + Test One. After Case: Hello, from ActionAttributeSampleTests.SimpleTestOne. Before Case: Hello, from ActionAttributeSampleTests.SimpleTestTwo. - Test ran. + Test Two. After Case: Hello, from ActionAttributeSampleTests.SimpleTestTwo. After Suite: Hello, from ActionAttributeSampleTests.{no method}. ```