Skip to content

Commit bb9f44a

Browse files
committedApr 29, 2014
Fix error message about missing platformName
1 parent 45e56b9 commit bb9f44a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/appium_lib/driver.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def initialize opts={}
257257
# https://code.google.com/p/selenium/source/browse/spec-draft.md?repo=mobile
258258
@device = @caps[:platformName]
259259
@device = @device.is_a?(Symbol) ? @device : @device.downcase.strip.intern if @device
260-
raise "Device must be set. Not found in options: #{opts}" unless @device
260+
raise "platformName must be set. Not found in options: #{opts}" unless @device
261261
raise 'platformName must be Android or iOS' unless [:android, :ios].include?(@device)
262262

263263
# load common methods
@@ -547,4 +547,4 @@ def x
547547
# Paging in Pry is annoying :q required to exit.
548548
# With pager disabled, the output is similar to IRB
549549
# Only set if Pry is defined.
550-
Pry.config.pager = false if defined?(Pry)
550+
Pry.config.pager = false if defined?(Pry)

0 commit comments

Comments
 (0)
Please sign in to comment.