Skip to content

Commit 59b7311

Browse files
committed
Fix python and ruby tests
1 parent 6aa667a commit 59b7311

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

py/BUILD.bazel

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,8 @@ py_test_suite(
523523
srcs = glob([
524524
"test/selenium/webdriver/marionette/**/*.py",
525525
"test/selenium/webdriver/firefox/**/*.py",
526-
]),
526+
],
527+
exclude = ["test/selenium/webdriver/common/devtools_tests.py"]),
527528
args = [
528529
"--instafail",
529530
] + BROWSERS["firefox"]["args"],

rb/spec/integration/selenium/webdriver/devtools_spec.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@ module WebDriver
112112
expect(logs).to include(
113113
an_object_having_attributes(type: :log, args: [hash_including('type' => 'object')])
114114
)
115-
expect(logs).to include(
116-
an_object_having_attributes(type: :log, args: [hash_including('location')])
117-
)
118115
end
119116

120117
it 'notifies about exceptions' do

0 commit comments

Comments
 (0)