Skip to content

Commit

Permalink
TestFairy option checking only checked for symbols, not strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Liebowitz committed May 24, 2017
1 parent 7c8a66c commit 85e4261
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastlane/lib/fastlane/actions/testfairy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def self.run(params)

options_to_client = lambda do |options|
options.map do |option|
case option
when :shake, :anonymous
case option.to_s
when "shake", "anonymous"
option.to_s
when :video_only_wifi
when "video_only_wifi"
'video-only-wifi'
else
UI.user_error!("Unknown option: #{option}")
Expand Down

0 comments on commit 85e4261

Please sign in to comment.