diff options
author | Sverker Eriksson <[email protected]> | 2017-03-08 19:02:00 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2017-03-08 19:02:00 +0100 |
commit | 575cc2683af16cc702795108d40d53b3df9d4daa (patch) | |
tree | f1bdc1e10bdf852a695fa92f97fff3f76481ff94 /lib/jinterface/test | |
parent | 32d13d59910a384ad09682cafc83c7300c96c694 (diff) | |
download | otp-575cc2683af16cc702795108d40d53b3df9d4daa.tar.gz otp-575cc2683af16cc702795108d40d53b3df9d4daa.tar.bz2 otp-575cc2683af16cc702795108d40d53b3df9d4daa.zip |
jinterface: Do not generate atoms on old latin1 external format
Diffstat (limited to 'lib/jinterface/test')
-rw-r--r-- | lib/jinterface/test/jinterface_SUITE_data/Maps.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/jinterface/test/jinterface_SUITE_data/Maps.java b/lib/jinterface/test/jinterface_SUITE_data/Maps.java index e8a05245da..a1b6fa73c9 100644 --- a/lib/jinterface/test/jinterface_SUITE_data/Maps.java +++ b/lib/jinterface/test/jinterface_SUITE_data/Maps.java @@ -40,19 +40,19 @@ class Maps { public static void main(final String argv[]) { runTest(new byte[] { (byte) 131, 116, 0, 0, 0, 0 }, "#{}", 1); - runTest(new byte[] { (byte) 131, 116, 0, 0, 0, 1, 100, 0, 1, 97, 100, - 0, 1, 98 }, "#{a => b}", 2); + runTest(new byte[] { (byte) 131, 116, 0, 0, 0, 1, 119, 1, 97, 119, + 1, 98 }, "#{a => b}", 2); // make sure keys are sorted here, jinterface doesn't reorder them runTest(new byte[] { (byte) 131, 116, 0, 0, 0, 2, 97, 2, 106, - 100, 0, 1, 97, 97, 1 }, "#{2 => [],a => 1}", 3); + 119, 1, 97, 97, 1 }, "#{2 => [],a => 1}", 3); runTest(new byte[] { (byte) 131, 116, 0, 0, 0, 1, 104, 1, 97, 3, 108, - 0, 0, 0, 1, 100, 0, 1, 114, 106 }, "#{{3} => [r]}", 4); + 0, 0, 0, 1, 119, 1, 114, 106 }, "#{{3} => [r]}", 4); try { // #{2 => [],a => 1} final OtpErlangMap map = new OtpErlangMap(new OtpInputStream( new byte[] { (byte) 131, 116, 0, 0, 0, 2, 97, 2, 106, - 100, 0, 1, 97, 97, 1 })); + 119, 1, 97, 97, 1 })); if (map.arity() != 2) { fail(5); |