Skip to content

Commit 1dddb07

Browse files
committed
remove redundant base
1 parent 2c24c66 commit 1dddb07

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

TUnit.Playwright/ContextTest.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace TUnit.Playwright;
55

66
public class ContextTest : BrowserTest
77
{
8-
public ContextTest() : base()
8+
public ContextTest()
99
{
1010
}
1111

@@ -17,7 +17,11 @@ public ContextTest(BrowserTypeLaunchOptions options) : base(options)
1717

1818
public virtual BrowserNewContextOptions ContextOptions(TestContext testContext)
1919
{
20-
return new() { Locale = "en-US", ColorScheme = ColorScheme.Light, };
20+
return new()
21+
{
22+
Locale = "en-US",
23+
ColorScheme = ColorScheme.Light,
24+
};
2125
}
2226

2327
[Before(HookType.Test, "", 0)]

0 commit comments

Comments
 (0)