diff options
author | Hans Bolinder <[email protected]> | 2018-01-19 10:37:06 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-01-22 15:28:51 +0100 |
commit | a92b77d7cd19947bd3896dcd96c7e389efdec2de (patch) | |
tree | 1df1ef37f818785ef87c8bf567089ff55c93c2b7 /lib/stdlib/test/epp_SUITE.erl | |
parent | bd873955db32c470f082c3629627a10c84c9c208 (diff) | |
download | otp-a92b77d7cd19947bd3896dcd96c7e389efdec2de.tar.gz otp-a92b77d7cd19947bd3896dcd96c7e389efdec2de.tar.bz2 otp-a92b77d7cd19947bd3896dcd96c7e389efdec2de.zip |
stdlib: Correct contracts
Diffstat (limited to 'lib/stdlib/test/epp_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/epp_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/test/epp_SUITE.erl b/lib/stdlib/test/epp_SUITE.erl index 915f478dfa..9123bf2f28 100644 --- a/lib/stdlib/test/epp_SUITE.erl +++ b/lib/stdlib/test/epp_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1998-2017. All Rights Reserved. +%% Copyright Ericsson AB 1998-2018. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -551,8 +551,8 @@ otp_8130(Config) when is_list(Config) -> "t() -> " " L = \"{ 34 , \\\"1\\\\x{AAA}\\\" , \\\"34\\\" , X . a , $\\\\x{AAA} }\", " " R = ?M({34,\"1\\x{aaa}\",\"34\",X.a,$\\x{aaa}})," - " Lt = erl_scan:string(L, 1, [unicode])," - " Rt = erl_scan:string(R, 1, [unicode])," + " Lt = erl_scan:string(L, 1)," + " Rt = erl_scan:string(R, 1)," " Lt = Rt, ok. ">>, ok}, |