Skip to content

Commit

Permalink
Fix for undefined method error (fastlane#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougsuriano authored and KrauseFx committed Jul 11, 2017
1 parent 22513d1 commit a855776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/boarding_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def find_app_tester(email: nil, app: nil)
tester = Spaceship::Tunes::Tester::Internal.find_by_app(app.apple_id, email)
tester ||= Spaceship::Tunes::Tester::External.find_by_app(app.apple_id, email)
else
raise "Account #{current_user.email} doesn't have a role that is allowed to administer app testers, current roles: #{current_user.roles}"
raise "Account #{current_user.email_address} doesn't have a role that is allowed to administer app testers, current roles: #{current_user.roles}"
tester = nil
end

Expand Down

0 comments on commit a855776

Please sign in to comment.