From 47d14dbad573ad98795b55fefe3bea273f482494 Mon Sep 17 00:00:00 2001 From: Jesse Tane Date: Mon, 6 Jan 2014 10:44:15 -0500 Subject: [PATCH] surrogate pair tests: use escape sequences --- test/buffer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/buffer.js b/test/buffer.js index 1b0ec7d..9a906c8 100644 --- a/test/buffer.js +++ b/test/buffer.js @@ -264,7 +264,7 @@ test('base64 strings without padding', function (t) { test('detect utf16 surrogate pairs', function(t) { t.plan(1) - var text = '😸💭👍' + var text = '\uD83D\uDE38' + '\uD83D\uDCAD' + '\uD83D\uDC4D' var buf = new B(text) t.equal(text, buf.toString()) t.end() @@ -272,7 +272,7 @@ test('detect utf16 surrogate pairs', function(t) { test('throw on orphaned utf16 surrogate lead code point', function(t) { t.plan(1) - var text = 'í ½í ½í²­í ½í±' + var text = '\uD83D\uDE38' + '\uD83D' + '\uD83D\uDC4D' var err try { var buf = new B(text) @@ -285,7 +285,7 @@ test('throw on orphaned utf16 surrogate lead code point', function(t) { test('throw on orphaned utf16 surrogate trail code point', function(t) { t.plan(1) - var text = 'í ½í¸¸í ½í²­í±' + var text = '\uD83D\uDE38' + '\uDCAD' + '\uD83D\uDC4D' var err try { var buf = new B(text) -- 2.34.1