Skip to content

Commit 00db3ae

Browse files
authored
Merge pull request crytic#1446 from crytic/v2.2.7-ghc910
Fix build failure with GHC 9.10
2 parents fa203fe + 1b498bd commit 00db3ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Echidna/Output/JSON.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ mapTest dappInfo test =
130130
mapTestState T.Solved txs = (Solved, Just $ mapTx <$> txs, Nothing)
131131
mapTestState T.Unsolvable _ = (Verified, Nothing, Nothing)
132132
mapTestState (T.Large _) txs = (Shrinking, Just $ mapTx <$> txs, Nothing)
133-
mapTestState (T.Failed e) _ = (Error, Nothing, Just $ show e) -- TODO add (show e)
133+
mapTestState (T.Failed e) _ = (Error, Nothing, Just $ Prelude.show e) -- TODO add (show e)
134134

135135
mapTx tx =
136136
let (function, args) = mapCall tx.call

0 commit comments

Comments
 (0)