Skip to content

Commit

Permalink
fix compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoeldner committed Oct 11, 2024
1 parent c6be642 commit e0ccafe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pact/Pact/Core/Errors.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1434,10 +1434,14 @@ evalErrorToBoundedText = mkBoundedText . \case
thsep ["Install capability failed. Capability is not declared as a managed capability and cannot be installed.", tFqn fqn]
CapNotInstalled cap ->
thsep
["Capability " renderQualName (_ctName cap) was not installed. "
["Capability"
, renderQualName (_ctName cap)
, "was not installed."
, "Check the sigs field or the arguments to verify that the capability is specified correctly."]
CapAlreadyInstalled cap ->
thsep ["Capability " renderQualName (_ctName cap) " already installed."]
thsep ["Capability"
, renderQualName (_ctName cap)
, "already installed."]
ModuleMemberDoesNotExist fqn ->
thsep ["Module member does not exist:", tFqn fqn]
NoSuchKeySet ksn ->
Expand Down

0 comments on commit e0ccafe

Please sign in to comment.