File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def before_first
84
84
85
85
t 'session_id' do
86
86
# 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}/ )
88
88
end
89
89
90
90
t 'xpath' do
@@ -107,7 +107,7 @@ def uibutton_text
107
107
108
108
t 'find_ele_by_attr' do
109
109
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 +/ )
111
111
end
112
112
113
113
t 'find_eles_by_attr' do
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ def before_first
8
8
end
9
9
10
10
t '::Appium::VERSION' do
11
- ::Appium ::VERSION . must_match /(\d +)\. (\d +).(\d +)/
11
+ ::Appium ::VERSION . must_match ( /(\d +)\. (\d +).(\d +)/ )
12
12
end
13
13
14
14
t '::Appium::DATE' do
15
- ::Appium ::DATE . must_match /(\d +)\- (\d +)\- (\d +)/
15
+ ::Appium ::DATE . must_match ( /(\d +)\- (\d +)\- (\d +)/ )
16
16
end
17
17
end
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def is_sauce
111
111
t 'sauce_access_key attr' do
112
112
sauce_access_key = driver_attributes [ :sauce_access_key ]
113
113
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}/ )
115
115
else
116
116
sauce_access_key . must_be_nil
117
117
end
@@ -139,7 +139,7 @@ def is_sauce
139
139
if is_sauce
140
140
server_version . must_match 'Sauce OnDemand'
141
141
else
142
- server_version . must_match /(\d +)\. (\d +).(\d +)/
142
+ server_version . must_match ( /(\d +)\. (\d +).(\d +)/ )
143
143
end
144
144
end
145
145
You can’t perform that action at this time.
0 commit comments