Skip to content

Commit

Permalink
Merge pull request #222 from fhunleth/fix-error-message
Browse files Browse the repository at this point in the history
Fix error reason message
  • Loading branch information
parroty committed May 26, 2020
2 parents f4660b2 + 7a1f587 commit cf98bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/excoveralls/poster.ex
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ defmodule ExCoveralls.Poster do
{:ok, "Unable to upload the report to '#{endpoint}' due to a timeout. Not failing the build."}

{:error, reason} ->
{:error, "Failed to upload the report to '#{endpoint}' (reason: #{reason})."}
{:error, "Failed to upload the report to '#{endpoint}' (reason: #{inspect(reason)})."}
end
end
end

0 comments on commit cf98bab

Please sign in to comment.