diff options
author | Zandra Hird <[email protected]> | 2015-05-11 15:07:39 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2015-05-11 15:07:39 +0200 |
commit | 0fad26858f4e952d25ef5372dda634587ad77b57 (patch) | |
tree | 37bb39c15e7f74d1df97eb12a065d1456d5ea483 /lib/eunit/src/eunit.erl | |
parent | 1f9201ca7db28e19e92c094b0317230ee930829c (diff) | |
parent | 65d41cb6c514308ab11645dc2d0842d4f6b629a4 (diff) | |
download | otp-0fad26858f4e952d25ef5372dda634587ad77b57.tar.gz otp-0fad26858f4e952d25ef5372dda634587ad77b57.tar.bz2 otp-0fad26858f4e952d25ef5372dda634587ad77b57.zip |
Merge branch 'vladdu/eunit_unicode_OTP11660'
* vladdu/eunit_unicode_OTP11660:
OTP-11660: make eunit unicode safe
Diffstat (limited to 'lib/eunit/src/eunit.erl')
-rw-r--r-- | lib/eunit/src/eunit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eunit/src/eunit.erl b/lib/eunit/src/eunit.erl index 9c589dfa86..fbfd123c43 100644 --- a/lib/eunit/src/eunit.erl +++ b/lib/eunit/src/eunit.erl @@ -231,7 +231,7 @@ event_logger(LogFile) -> event_logger_loop(Reference, FD) -> receive {status, _Id, _Info}=Msg -> - io:fwrite(FD, "~p.\n", [Msg]), + io:fwrite(FD, "~tp.\n", [Msg]), event_logger_loop(Reference, FD); {stop, Reference, _ReplyTo} -> %% no need to reply, just exit |