Skip to content

Commit 1b498bd

Browse files
committed
Fix build failure with GHC 9.10
1 parent e871c88 commit 1b498bd

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
@@ -132,7 +132,7 @@ mapTest dappInfo test =
132132
mapTestState T.Passed _ = (Passed, Nothing, Nothing)
133133
mapTestState T.Solved txs = (Solved, Just $ mapTx <$> txs, Nothing)
134134
mapTestState (T.Large _) txs = (Shrinking, Just $ mapTx <$> txs, Nothing)
135-
mapTestState (T.Failed e) _ = (Error, Nothing, Just $ show e) -- TODO add (show e)
135+
mapTestState (T.Failed e) _ = (Error, Nothing, Just $ Prelude.show e) -- TODO add (show e)
136136

137137
mapTx tx =
138138
let (function, args) = mapCall tx.call

0 commit comments

Comments
 (0)