Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gem 'minitest', '~> 5.0'
gem 'minitest-reporters', '~> 1.1'
gem 'parallel_tests'
gem 'rake', '~> 13.0'
gem 'rubocop', '1.87.0'
gem 'rubocop', '1.88.0'
gem 'simplecov'
gem 'steep', '~> 1.10.0'
gem 'webmock', '~> 3.26.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/appium_lib_core/common/device/app_management.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def background_app(duration = 0)

def install_app(path, options = {}) # steep:ignore
args = { appPath: path }
args[:options] = options unless options&.empty?
args[:options] = options unless options && options.empty?

execute :install_app, {}, args
end
Expand Down
Loading