diff options
author | Fredrik Gustafsson <[email protected]> | 2013-11-08 12:19:29 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-11-08 12:19:29 +0100 |
commit | 7724137c2952a343a709fc9e2f1a44eb2e1fb584 (patch) | |
tree | 3c7bb53ee2dd0bea190e259e9b7589c60e9a32cc /lib | |
parent | 942311c5c19c3689581d4c6c9b1b8049cb94122c (diff) | |
parent | 17ed2092eb0c5fa49c3d1f15eab2db77e1b69478 (diff) | |
download | otp-7724137c2952a343a709fc9e2f1a44eb2e1fb584.tar.gz otp-7724137c2952a343a709fc9e2f1a44eb2e1fb584.tar.bz2 otp-7724137c2952a343a709fc9e2f1a44eb2e1fb584.zip |
Merge branch 'robertoaloi/eunit/surefire-printable-chars/OTP-11467' into maint
* robertoaloi/eunit/surefire-printable-chars/OTP-11467:
Do not attempt to detect lists of printable characters in Data
Diffstat (limited to 'lib')
-rw-r--r-- | lib/eunit/src/eunit_surefire.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eunit/src/eunit_surefire.erl b/lib/eunit/src/eunit_surefire.erl index cc021625d5..a2463d32e8 100644 --- a/lib/eunit/src/eunit_surefire.erl +++ b/lib/eunit/src/eunit_surefire.erl @@ -174,7 +174,7 @@ handle_cancel(group, Data, St) -> setup_failed -> "fixture setup "; cleanup_failed -> "fixture cleanup " end - ++ io_lib:format("~p", [proplists:get_value(id, Data)]), + ++ io_lib:format("~w", [proplists:get_value(id, Data)]), Desc = format_desc(proplists:get_value(desc, Data)), TestCase = #testcase{ name = Name, description = Desc, |