Skip to content

Commit ac54640

Browse files
chore(deps): update rubocop requirement from 1.72.2 to 1.73.0 (#596)
* chore(deps): update rubocop requirement from 1.72.2 to 1.73.0 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.72.2...v1.73.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * fix rubocop --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kazuaki Matsuo <[email protected]>
1 parent 986fdab commit ac54640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gem 'minitest', '~> 5.0'
88
gem 'minitest-reporters', '~> 1.1'
99
gem 'parallel_tests'
1010
gem 'rake', '~> 13.0'
11-
gem 'rubocop', '1.72.2'
11+
gem 'rubocop', '1.73.0'
1212
gem 'simplecov'
1313
gem 'steep', '~> 1.9.3'
1414
gem 'webmock', '~> 3.25.0'

test/test_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def ios(platform_name = :ios)
130130
platform_version = '17.4'
131131
wda_port = wda_local_port
132132

133-
real_device = ENV['REAL'] ? true : false
133+
real_device = ENV['REAL'] || false
134134

135135
cap = {
136136
caps: { # :desiredCapabilities is also available

0 commit comments

Comments
 (0)