From 1d0fb850d96c74c2edf6f01fe0a2875a8f799051 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 6 Sep 2010 12:18:46 -0700 Subject: [PATCH] test-http-parser should not use private API --- test/simple/test-http-parser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/simple/test-http-parser.js b/test/simple/test-http-parser.js index 6a9614e955..2068be5fba 100644 --- a/test/simple/test-http-parser.js +++ b/test/simple/test-http-parser.js @@ -15,7 +15,7 @@ var buffer = new Buffer(1024); var request = "GET /hello HTTP/1.1\r\n\r\n"; -buffer.asciiWrite(request, 0, request.length); +buffer.write(request, 0, 'ascii'); var callbacks = 0; @@ -39,7 +39,7 @@ parser.onURL = function (b, off, len) { parser.onPath = function (b, off, length) { console.log("path [" + off + ", " + length + "]"); - var path = b.asciiSlice(off, off+length); + var path = b.toString('ascii', off, off+length); console.log("path = '" + path + "'"); assert.equal('/hello', path); callbacks++;