From ea165fef37e8082f71f06adc25411eb82a6f25bb Mon Sep 17 00:00:00 2001 From: brianc Date: Sat, 23 Oct 2010 18:08:03 -0500 Subject: [PATCH] removed outstanding references to client --- test/unit/connection-incomming-message-parsing-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/connection-incomming-message-parsing-tests.js b/test/unit/connection-incomming-message-parsing-tests.js index 1b795e1b..b3fcb60a 100644 --- a/test/unit/connection-incomming-message-parsing-tests.js +++ b/test/unit/connection-incomming-message-parsing-tests.js @@ -320,7 +320,7 @@ test('split buffer, single message parsing', function() { var fullBuffer = buffers.dataRow([null, "bang", "zug zug", null, "!"]); var stream = new MemoryStream(); stream.readyState = 'open'; - var client = new Client({ + var client = new Connection({ stream: stream }); client.connect(); @@ -379,7 +379,7 @@ test('split buffer, multiple message parsing', function() { var messages = []; var stream = new MemoryStream(); - var client = new Client({ + var client = new Connection({ stream: stream }); client.connect();