Skip to content

Commit

Permalink
Fix issue proper-testing#132: Pretty print call sequences.
Browse files Browse the repository at this point in the history
  • Loading branch information
ijt committed Jan 2, 2017
1 parent a57a6c6 commit 136a7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proper.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ print_imm_clean_input({'$conjunction',SubImmCExms}, Prefix, Print) ->
end,
lists:foreach(PrintSubImmCExm, SubImmCExms);
print_imm_clean_input(Instance, Prefix, Print) ->
Print(Prefix ++ "~w~n", [Instance]).
Print(Prefix ++ "~s~n", [io_lib_pretty:print(Instance)]).

-spec execute_actions(fail_actions()) -> 'ok'.
execute_actions(Actions) ->
Expand Down

0 comments on commit 136a7b4

Please sign in to comment.