Skip to content

Commit fce0d67

Browse files
Add force encoding check
1 parent aed2607 commit fce0d67

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/appium_lib/helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@ def empty ele
301301
end
302302

303303
def fix_space s
304+
# ints don't respond to force encoding
305+
return s unless s.respond_to? :force_encoding
304306
# char code 160 (name, label) vs 32 (value) will break comparison.
305307
# convert string to binary and remove 160.
306308
# \xC2\xA0

0 commit comments

Comments
 (0)