Skip to content

Commit 4720e82

Browse files
committed
Rubocop - Lint/AmbiguousRegexpLiteral
1 parent 7477497 commit 4720e82

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ios_tests/lib/ios/specs/common/helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def before_first
8484

8585
t 'session_id' do
8686
# Sauce doesn't return '-' so make them optional.
87-
session_id.must_match /\h{8}-?\h{4}-?\h{4}-?\h{4}-?\h{12}/
87+
session_id.must_match(/\h{8}-?\h{4}-?\h{4}-?\h{4}-?\h{12}/)
8888
end
8989

9090
t 'xpath' do
@@ -107,7 +107,7 @@ def uibutton_text
107107

108108
t 'find_ele_by_attr' do
109109
el_id = find_ele_by_attr('UIAStaticText', 'name', uibutton_text).instance_variable_get :@id
110-
el_id.must_match /\d+/
110+
el_id.must_match(/\d+/)
111111
end
112112

113113
t 'find_eles_by_attr' do

ios_tests/lib/ios/specs/common/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def before_first
88
end
99

1010
t '::Appium::VERSION' do
11-
::Appium::VERSION.must_match /(\d+)\.(\d+).(\d+)/
11+
::Appium::VERSION.must_match(/(\d+)\.(\d+).(\d+)/)
1212
end
1313

1414
t '::Appium::DATE' do
15-
::Appium::DATE.must_match /(\d+)\-(\d+)\-(\d+)/
15+
::Appium::DATE.must_match(/(\d+)\-(\d+)\-(\d+)/)
1616
end
1717
end

ios_tests/lib/ios/specs/driver.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def is_sauce
111111
t 'sauce_access_key attr' do
112112
sauce_access_key = driver_attributes[:sauce_access_key]
113113
if is_sauce
114-
sauce_access_key.must_match /\h{8}-\h{4}-\h{4}-\h{4}-\h{12}/
114+
sauce_access_key.must_match(/\h{8}-\h{4}-\h{4}-\h{4}-\h{12}/)
115115
else
116116
sauce_access_key.must_be_nil
117117
end
@@ -139,7 +139,7 @@ def is_sauce
139139
if is_sauce
140140
server_version.must_match 'Sauce OnDemand'
141141
else
142-
server_version.must_match /(\d+)\.(\d+).(\d+)/
142+
server_version.must_match(/(\d+)\.(\d+).(\d+)/)
143143
end
144144
end
145145

0 commit comments

Comments
 (0)