Skip to content

Commit 0e69e8a

Browse files
committed
Fix code smell S3881.
1 parent 7b1285a commit 0e69e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IntegrationTests/DriverManagerTests/CustomServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace IntegrationTests.DriverManagerTests
1010
{
11-
public class CustomServiceTests: IDisposable
11+
public sealed class CustomServiceTests: IDisposable
1212
{
1313
private IWebDriver _webDriver;
1414
private readonly BinaryService _customBinaryService;
@@ -22,7 +22,7 @@ public CustomServiceTests()
2222
}
2323

2424
[Fact, Trait("Category", "Browser")]
25-
protected void CustomServiceTest()
25+
public void CustomServiceTest()
2626
{
2727
_driverExe = "geckodriver";
2828
new DriverManager(_customBinaryService, _customVariableService).SetUpDriver(new FirefoxConfig());

0 commit comments

Comments
 (0)