Skip to content

Commit 8cb82b4

Browse files
committed
fixup! Do not camelize Chrome localState object
1 parent 88373fc commit 8cb82b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rb/spec/unit/selenium/webdriver/chrome/options_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ module Chrome
253253
emulation: {device_name: :mine},
254254
local_state: {
255255
foo: 'bar',
256-
key_that_should_not_be_camelcased: 'baz',
256+
key_that_should_not_be_camelcased: 'baz'
257257
},
258258
detach: true,
259259
debugger_address: '127.0.0.1:8181',
@@ -284,7 +284,7 @@ module Chrome
284284
'mobileEmulation' => {'deviceName' => 'mine'},
285285
'localState' => {
286286
'foo' => 'bar',
287-
'key_that_should_not_be_camelcased' => 'baz',
287+
'key_that_should_not_be_camelcased' => 'baz'
288288
},
289289
'detach' => true,
290290
'debuggerAddress' => '127.0.0.1:8181',

0 commit comments

Comments
 (0)