Skip to content

Commit

Permalink
Merge pull request #25 from pirapira/reverse
Browse files Browse the repository at this point in the history
Do not reverse the call sequence
  • Loading branch information
japesinator committed Mar 16, 2018
2 parents d6b0cc0 + fa3d846 commit 83b8fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Echidna/Exec.hs
Expand Up @@ -93,7 +93,7 @@ ePropertySeq v ts p n = mapConfig (\x -> x {propertyTestLimit = 10000}) . proper
executeSequential (VMState v) =<< forAllWith printCallSeq
(sequential (linear 1 n) (VMState v) [eCommand ts p]) where
printCallSeq = ("Call sequence: " ++) . intercalate "\n " .
map showCall . reverse . sequentialActions
map showCall . sequentialActions
showCall (Action i _ _ _ _ _) = show i ++ ";"

-- Should work, but missing instance MonadBaseControl b m => MonadBaseControl b (PropertyT m)
Expand Down

0 comments on commit 83b8fd5

Please sign in to comment.