Skip to content

Commit fceb418

Browse files
committed
Fix minor tech issue
1 parent 99d3494 commit fceb418

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CSF.Extensions.WebDriver.Tests/Factories/LogLevelDriverOptionsFactoryDecoratorTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void CreateOptionsShouldSetLogLevelIfSpecifiedInConfig([Frozen] ICreatesD
2121

2222
sut.CreateOptions(optionsType, config);
2323

24-
Assert.That(() => options.GetLoggingPrefs()[LogType.Browser], Is.EqualTo("SEVERE"));
24+
Assert.That(options.GetLoggingPrefs()[LogType.Browser], Is.EqualTo("SEVERE"));
2525
}
2626

2727
[Test, AutoMoqData]
@@ -38,7 +38,7 @@ public void CreateOptionsShouldNotSetLogLevelIfOmittedInConfig([Frozen] ICreates
3838

3939
sut.CreateOptions(optionsType, config);
4040

41-
Assert.That(() => options.GetLoggingPrefs(), Is.Null);
41+
Assert.That(options.GetLoggingPrefs(), Is.Null);
4242
}
4343

4444
[Test, AutoMoqData]
@@ -55,7 +55,7 @@ public void CreateOptionsShouldNotSetLogLevelIfConfigIsInvalid([Frozen] ICreates
5555

5656
sut.CreateOptions(optionsType, config);
5757

58-
Assert.That(() => options.GetLoggingPrefs(), Is.Null);
58+
Assert.That(options.GetLoggingPrefs(), Is.Null);
5959
}
6060

6161
class InspectableDriverOptions : DriverOptions

0 commit comments

Comments
 (0)