diff options
author | Patrik Nyblom <[email protected]> | 2013-02-19 10:27:14 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2013-02-19 10:27:14 +0100 |
commit | 2a79b74ac371387ce338bacf979f9ca32447b302 (patch) | |
tree | 62a822d8c5bff83d6d1154feb19f2b31d3284ab8 /lib/stdlib/test/io_SUITE.erl | |
parent | 766fdc6d0fea2efacd4c4cdcc12992a2f5dbaee7 (diff) | |
download | otp-2a79b74ac371387ce338bacf979f9ca32447b302.tar.gz otp-2a79b74ac371387ce338bacf979f9ca32447b302.tar.bz2 otp-2a79b74ac371387ce338bacf979f9ca32447b302.zip |
Adapt stdlib tests to ~tp detecting latin1 binaries
Diffstat (limited to 'lib/stdlib/test/io_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/io_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/io_SUITE.erl b/lib/stdlib/test/io_SUITE.erl index 1e095733cf..9f828c6d2d 100644 --- a/lib/stdlib/test/io_SUITE.erl +++ b/lib/stdlib/test/io_SUITE.erl @@ -2139,8 +2139,8 @@ otp_10302(Suite) when is_list(Suite) -> "<<\"äppl\"/utf8...>>" = pretty(<<"äpple"/utf8>>, 2), "<<\"apel\">>" = pretty(<<"apel">>, 2), "<<\"apel\"...>>" = pretty(<<"apelsin">>, 2), - "<<228,112,112,108>>" = fmt("~tp", [<<"äppl">>]), - "<<228,...>>" = fmt("~tP", [<<"äppl">>, 2]), + "<<\"äppl\">>" = fmt("~tp", [<<"äppl">>]), + "<<\"äppl\"...>>" = fmt("~tP", [<<"äpple">>, 2]), "<<0,0,0,0,0,0,1,0>>" = fmt("~p", [<<256:64/unsigned-integer>>]), "<<0,0,0,0,0,0,1,0>>" = fmt("~tp", [<<256:64/unsigned-integer>>]), |