We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e871c88 commit 1b498bdCopy full SHA for 1b498bd
lib/Echidna/Output/JSON.hs
@@ -132,7 +132,7 @@ mapTest dappInfo test =
132
mapTestState T.Passed _ = (Passed, Nothing, Nothing)
133
mapTestState T.Solved txs = (Solved, Just $ mapTx <$> txs, Nothing)
134
mapTestState (T.Large _) txs = (Shrinking, Just $ mapTx <$> txs, Nothing)
135
- mapTestState (T.Failed e) _ = (Error, Nothing, Just $ show e) -- TODO add (show e)
+ mapTestState (T.Failed e) _ = (Error, Nothing, Just $ Prelude.show e) -- TODO add (show e)
136
137
mapTx tx =
138
let (function, args) = mapCall tx.call
0 commit comments