From f89e9c4bb0718f040b558ea5b547be725a889ab6 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Tue, 14 Dec 2010 19:57:26 -0600 Subject: [PATCH] made require statement work with older versions of node --- test/unit/utils-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/utils-tests.js b/test/unit/utils-tests.js index 88350cca..1fa733c9 100644 --- a/test/unit/utils-tests.js +++ b/test/unit/utils-tests.js @@ -1,5 +1,5 @@ require(__dirname + '/test-helper'); -var Pool = require("utils").Pool; +var Pool = require(__dirname + "/../../lib/utils").Pool; //this tests the monkey patching //to ensure comptability with older