Skip to content

Commit 7477497

Browse files
committed
Rubocop - Style/StringLiterals
1 parent 40c060b commit 7477497

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def before_first
4444
ensure
4545
set_wait
4646
end
47-
value.must_equal "Invalid locator strategy: css selector"
47+
value.must_equal 'Invalid locator strategy: css selector'
4848
end
4949
end
5050
end

ios_tests/lib/ios/specs/device/device.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def go_back
2828
end
2929

3030
t 'app_installed' do
31-
installed = app_installed? "Derrp"
31+
installed = app_installed? 'Derrp'
3232
installed.must_equal false
3333
end
3434

@@ -47,7 +47,7 @@ def go_back
4747
end
4848

4949
t 'available_contexts' do
50-
available_contexts.must_equal ["NATIVE_APP"]
50+
available_contexts.must_equal ['NATIVE_APP']
5151
end
5252

5353
t 'current_context' do
@@ -60,8 +60,8 @@ def go_back
6060
end
6161

6262
t 'app_strings' do
63-
app_strings.must_include "SearchBarExplain"
64-
app_strings('en').must_include "SearchBarExplain"
63+
app_strings.must_include 'SearchBarExplain'
64+
app_strings('en').must_include 'SearchBarExplain'
6565
end
6666

6767
t 'action_chain' do

0 commit comments

Comments
 (0)