scan/lib/scan/error_handler.rb in fastlane-2.31.0.beta.20170515010044 vs scan/lib/scan/error_handler.rb in fastlane-2.31.0.beta.20170516010048

- old
+ new

@@ -19,18 +19,18 @@ print "You'll have to restart your shell session after updating the file." print "If you are using zshell or another shell, make sure to edit the correct bash file." print "For more information visit this stackoverflow answer:" print "https://stackoverflow.com/a/17031697/445598" when /Testing failed/ - UI.user_error!("Error building the application - see the log above") + UI.build_failure!("Error building the application - see the log above") when /Executed/ # this is *really* important: # we don't want to raise an exception here # as we handle this in runner.rb at a later point # after parsing the actual test results return end - UI.user_error!("Error building/testing the application - see the log above") + UI.build_failure!("Error building/testing the application - see the log above") end private # Just to make things easier