Skip to content

Commit

Permalink
Needed to make regex group optional for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
emanlove committed Nov 1, 2023
1 parent 8e05d89 commit 00ea092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atest/acceptance/create_webdriver.robot
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Create Webdriver With Bad Keyword Argument Dictionary
[Documentation] Invalid arguments types
${status} ${error} = Run Keyword And Ignore Error Create Webdriver Firefox kwargs={'spam': 'eggs'}
Should Be Equal ${status} FAIL
Should Match Regexp ${error} (TypeError: (?:WebDriver.)__init__\\(\\) got an unexpected keyword argument 'spam'|kwargs must be a dictionary\.)
Should Match Regexp ${error} (TypeError: (?:WebDriver.)?__init__\\(\\) got an unexpected keyword argument 'spam'|kwargs must be a dictionary\.)

*** Keywords ***
Set Driver Variables
Expand Down

0 comments on commit 00ea092

Please sign in to comment.