Skip to content

Commit 1637d36

Browse files
committed
[rb] Fixing linter
1 parent 9acbfce commit 1637d36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module WebDriver
3030
end
3131

3232
it 'supports events', except: {browser: :firefox,
33-
reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
33+
reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
3434
expect { |block|
3535
driver.devtools.page.enable
3636
driver.devtools.page.on(:load_event_fired, &block)
@@ -74,7 +74,7 @@ module WebDriver
7474
end
7575

7676
it 'notifies about log messages', except: {browser: :firefox,
77-
reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
77+
reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
7878
logs = []
7979
driver.on_log_event(:console) { |log| logs.push(log) }
8080
driver.navigate.to url_for('javascriptPage.html')
@@ -112,8 +112,8 @@ module WebDriver
112112
)
113113
end
114114

115-
it 'notifies about document log messages', except: {browser: %i[chrome edge firefox],
116-
reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
115+
it 'notifies about document log messages',
116+
except: {browser: %i[chrome edge firefox], reason: 'https://bugzilla.mozilla.org/show_bug.cgi?id=1819965'} do
117117
logs = []
118118
driver.on_log_event(:console) { |log| logs.push(log) }
119119
driver.navigate.to url_for('javascriptPage.html')

0 commit comments

Comments
 (0)