Skip to content

Commit 41a096e

Browse files
committed
Fixed long line
1 parent 5064421 commit 41a096e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/unit/android/device/mjsonwp/commands_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ def test_gsm_call
339339

340340
def test_gsm_signal
341341
stub_request(:post, "#{SESSION}/appium/device/gsm_signal")
342-
.with(body: { signalStrength: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good], signalStrengh: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good] }.to_json)
342+
.with(body: { signalStrength: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good],
343+
signalStrengh: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good] }.to_json)
343344
.to_return(headers: HEADER, status: 200, body: { value: '' }.to_json)
344345

345346
@driver.gsm_signal :good

test/unit/android/device/w3c/commands_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,8 @@ def test_gsm_call
340340

341341
def test_gsm_signal
342342
stub_request(:post, "#{SESSION}/appium/device/gsm_signal")
343-
.with(body: { signalStrength: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good], signalStrengh: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good] }.to_json)
343+
.with(body: { signalStrength: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good],
344+
signalStrengh: ::Appium::Core::Android::Device::Emulator::GSM_SIGNALS[:good] }.to_json)
344345
.to_return(headers: HEADER, status: 200, body: { value: '' }.to_json)
345346

346347
@driver.gsm_signal :good

0 commit comments

Comments
 (0)