Skip to content

Commit 0aa2ab9

Browse files
committed
[py] fix ff marionette binary test
the combination of acceptInsecureCerts and an invalid binary result in the state of 'Unable to find a matching set of capabilities'
1 parent 997503c commit 0aa2ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/test/selenium/webdriver/marionette/mn_binary_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ def driver_kwargs(request, driver_kwargs):
3131
def test_invalid_binary(driver_class, driver_kwargs):
3232
with pytest.raises(WebDriverException) as excinfo:
3333
driver_class(**driver_kwargs)
34-
assert 'no such file or directory' in str(excinfo.value)
34+
assert 'Unable to find a matching set of capabilities' in str(excinfo.value)

0 commit comments

Comments
 (0)