Skip to content

Commit c9578cc

Browse files
committed
Minor tech debt fixes
1 parent cfa4478 commit c9578cc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CSF.Screenplay.Selenium/Tasks/EnterTheDate.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ namespace CSF.Screenplay.Selenium.Actions
3232
public class EnterTheDate : IPerformable, ICanReport
3333
{
3434
const string nonNumericPattern = @"\D";
35+
3536
static readonly Regex nonNumeric = new Regex(nonNumericPattern,
3637
RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.CultureInvariant,
3738
TimeSpan.FromMilliseconds(100));

Tests/CSF.Screenplay.Selenium.Tests/BrowserStack/BrowserStackDriverFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public WebDriverAndOptions GetWebDriver(WebDriverCreationOptions options, Action
3434
return new (driver, driverOptions);
3535
}
3636

37-
DriverOptions GetDriverOptions()
37+
static DriverOptions GetDriverOptions()
3838
{
3939
var browserName = GetBrowserName();
4040
return browserName switch

0 commit comments

Comments
 (0)