Skip to content

Commit b1d9d5f

Browse files
committed
Rubocop - Metrics/LineLength
1 parent 39d8b4e commit b1d9d5f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ios_tests/lib/ios/specs/common/helper.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ def before_first
5959
# regular rescue will not handle exceptions outside of StandardError hierarchy
6060
# must rescue Exception explicitly to rescue everything
6161
proc { wait_true(wait_opts) { fail NoMemoryError } }.must_raise Selenium::WebDriver::Error::TimeOutError
62-
proc { wait_true(timeout: 0.2, interval: 0.0) { fail NoMemoryError } }.must_raise Selenium::WebDriver::Error::TimeOutError
62+
proc { wait_true(timeout: 0.2, interval: 0.0) { fail NoMemoryError } }
63+
.must_raise Selenium::WebDriver::Error::TimeOutError
6364

6465
# invalid keys are rejected
6566
proc { wait_true(invalidkey: 2) { true } }.must_raise RuntimeError

ios_tests/lib/ios/specs/common/patch.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# rubocop:disable Lint/RescueException
2+
# rubocop:disable Metrics/LineLength
23

34
#
45
# Skip:

0 commit comments

Comments
 (0)