[minor] Use locally scoped `path` variable

master
indexzero 2012-07-10 01:47:28 -04:00
parent 80a79733d3
commit 8b53c12729
1 changed files with 1 additions and 1 deletions

View File

@ -64,5 +64,5 @@ exports.cp = function (from, to, callback) {
};
exports.fixture = function (file) {
return require('path').join(__dirname, 'fixtures', file);
return path.join(__dirname, 'fixtures', file);
};