Skip to content

Commit d5868f1

Browse files
committed
spec/runner: go back to booleans
1 parent a804f9a commit d5868f1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/runner.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
cap['browser_version'] = ENV['SELENIUM_VERSION'] if ENV['SELENIUM_VERSION']
2727

2828
cap['browserstack.tunnelIdentifier'] = ENV['TRAVIS_JOB_ID']
29-
cap['browserstack.tunnel'] = 'true'
30-
cap['browserstack.debug'] = 'false'
29+
cap['browserstack.tunnel'] = true
30+
cap['browserstack.debug'] = false
3131

32-
cap['databaseEnabled'] = 'true'
33-
cap['browserConnectionEnabled'] = 'true'
34-
cap['locationContextEnabled'] = 'true'
35-
cap['webStorageEnabled'] = 'true'
32+
cap['databaseEnabled'] = true
33+
cap['browserConnectionEnabled'] = true
34+
cap['locationContextEnabled'] = true
35+
cap['webStorageEnabled'] = true
3636

3737
print 'Loading...'
3838

0 commit comments

Comments
 (0)