Skip to content

Commit 04ae789

Browse files
committed
Fix attribute error.
1 parent 231e3ee commit 04ae789

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/Beef.Test.NUnit/TestSetUpAttribute.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using NUnit.Framework.Internal;
66
using NUnit.Framework.Internal.Commands;
77
using System;
8+
using System.Diagnostics;
89
using System.Threading;
910

1011
namespace Beef.Test.NUnit
@@ -13,7 +14,7 @@ namespace Beef.Test.NUnit
1314
/// Sets up the test by <see cref="ExecutionContext.Reset()">resetting</see> the <see cref="ExecutionContext"/> to ensure <c>null</c>; then orchestrates whether the
1415
/// <see cref="TestSetUp.RegisterSetUp(Func{int, object?, bool})">registered setup</see> is required to be invoked for the test.
1516
/// </summary>
16-
//[System.Diagnostics.DebuggerStepThrough]
17+
[DebuggerStepThrough]
1718
public class TestSetUpAttribute : PropertyAttribute, IWrapSetUpTearDown, ICommandWrapper
1819
{
1920
private static readonly AsyncLocal<string> _username = new AsyncLocal<string>();

0 commit comments

Comments
 (0)