Skip to content

Commit 2c6ac55

Browse files
committed
Release 1.9.2
1 parent cf257ff commit 2c6ac55

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
## [Unreleased]
55
### Enhancements
66

7+
### Bug fixes
8+
9+
### Deprecations
10+
11+
## [1.9.2] - 2018-08-23
12+
### Enhancements
13+
714
### Bug fixes
815
- fix unexpedted method missing against `:to_hash`
916

lib/appium_lib_core/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Appium
22
module Core
3-
VERSION = '1.9.1'.freeze unless defined? ::Appium::Core::VERSION
4-
DATE = '2018-08-20'.freeze unless defined? ::Appium::Core::DATE
3+
VERSION = '1.9.2'.freeze unless defined? ::Appium::Core::VERSION
4+
DATE = '2018-08-23'.freeze unless defined? ::Appium::Core::DATE
55
end
66
end

test/functional/android/patch_test.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ def test_method_missing_attributes
2020
e = @@core.wait { @@driver.find_element :accessibility_id, 'App' }
2121

2222
assert_equal 'App', e.text
23-
assert_equal 'App', e.enabled
24-
assert_equal 'App', e.focused
25-
assert_equal 'App', e.content_desc
23+
assert_equal 'false', e.focused
2624
end
2725

2826
def test_type

0 commit comments

Comments
 (0)