diff --git a/test/test.js b/test/test.js index a4c79e4f3b..48dd86a56b 100644 --- a/test/test.js +++ b/test/test.js @@ -166,15 +166,6 @@ tests.IPV6 = function () { } tests.UNIX_SOCKET = function () { - try { - var stat = require('fs').accessSync('/tmp/redis.sock'); - } catch(err) { - if (err.code === 'ENOENT') { - console.log("Skipping SOCKET since none exists"); - return run_next_test(); - } - } - var unixClient = redis.createClient('/tmp/redis.sock', { parser: parser }); // if this fails, check the permission of unix socket.