Browse Source

test-http-parser should not use private API

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
1d0fb850d9
  1. 4
      test/simple/test-http-parser.js

4
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"; 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; var callbacks = 0;
@ -39,7 +39,7 @@ parser.onURL = function (b, off, len) {
parser.onPath = function (b, off, length) { parser.onPath = function (b, off, length) {
console.log("path [" + 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 + "'"); console.log("path = '" + path + "'");
assert.equal('/hello', path); assert.equal('/hello', path);
callbacks++; callbacks++;

Loading…
Cancel
Save