Skip to content

Commit 2e8d796

Browse files
authored
feat(mstest): Mark TestContext as virtual (#3210)
1 parent a878a63 commit 2e8d796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Playwright.MSTest/WorkerAwareTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Microsoft.Playwright.MSTest;
1010

1111
public class WorkerAwareTest
1212
{
13-
public TestContext TestContext { get; set; } = null!;
13+
public virtual TestContext TestContext { get; set; } = null!;
1414

1515
private static readonly ConcurrentStack<Worker> _allWorkers = new();
1616
private Worker _currentWorker = null!;

0 commit comments

Comments
 (0)