Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apply intern #52

Merged
merged 3 commits into from
Jan 20, 2018
Merged

apply intern #52

merged 3 commits into from
Jan 20, 2018

Conversation

KazuCocoa
Copy link
Member

Missing symbol set in set_automation_name_if_nil method #50

@@ -458,7 +458,8 @@ def set_automation_name
# @private
def set_automation_name_if_nil
return unless @automation_name.nil?
@automation_name = @driver.capabilities['automationName']
automation_name = @driver.capabilities['automationName']
@automation_name = automation_name.nil? ? automation_name : automation_name.intern

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.nil? maybe .is_a? Symbol
in 460 you checked that.

Copy link
Member Author

@KazuCocoa KazuCocoa Jan 20, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because we can set a blank automationName and then @driver.capabilities['automationName'] will be nil.

@KazuCocoa KazuCocoa force-pushed the fix_automation_name branch from 21b7323 to c643f8c Compare January 20, 2018 03:29
@KazuCocoa KazuCocoa force-pushed the fix_automation_name branch from c643f8c to 9e33336 Compare January 20, 2018 03:29
@KazuCocoa KazuCocoa merged commit 087d654 into appium:master Jan 20, 2018
@KazuCocoa KazuCocoa deleted the fix_automation_name branch March 16, 2018 14:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants