pilot/lib/pilot/tester_manager.rb in fastlane-2.126.0.beta.20190623200100 vs pilot/lib/pilot/tester_manager.rb in fastlane-2.126.0
- old
+ new
@@ -81,16 +81,16 @@
private
def find_app(apple_id: nil, app_identifier: nil)
if app_identifier
- app = Spaceship::ConnectAPI::TestFlight::App.find(app_identifier)
+ app = Spaceship::ConnectAPI::App.find(app_identifier)
UI.user_error!("Could not find an app by #{app_identifier}") unless app
return app
end
if apple_id
- app = Spaceship::ConnectAPI::TestFlight::App.get(app_id: apple_id)
+ app = Spaceship::ConnectAPI::App.get(app_id: apple_id)
UI.user_error!("Could not find an app by #{apple_id}") unless app
return app
end
UI.user_error!("You must include an `app_identifier` to `list_testers`")