From 84d292cfdad4249885e43b7123634e5a8dd0ff1f Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 18 Dec 2019 20:57:16 -0500 Subject: updated socket and space to export the main class --- tests/socket_fetch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/socket_fetch.js') diff --git a/tests/socket_fetch.js b/tests/socket_fetch.js index a613dc6..b558f89 100644 --- a/tests/socket_fetch.js +++ b/tests/socket_fetch.js @@ -1,7 +1,7 @@ // Tests Socket.fetch and Socket.on('fetch') -const socket = require('../socket'); +const Socket = require('../socket'); -let world = new socket.Socket(); +let world = new Socket(); world.on('open', () => {world.fetch([[10,10,10,10]])}); -- cgit