From 742183638794ccecd8d20e91901b2f27a292bf77 Mon Sep 17 00:00:00 2001 From: Bradley Meck Date: Fri, 7 Sep 2012 09:40:15 -0500 Subject: [PATCH] [fix] heirarchy fixture file path wrong in tests --- test/provider-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/provider-test.js b/test/provider-test.js index 7d87972..78ee97d 100644 --- a/test/provider-test.js +++ b/test/provider-test.js @@ -141,7 +141,7 @@ vows.describe('nconf/provider').addBatch({ }), "with a single object": assertProvider(function (provider) { provider.file({ - dir: helpers.fixture('hierarchy'), + dir: helpers.fixture(''), file: 'store.json', search: true }); @@ -151,7 +151,7 @@ vows.describe('nconf/provider').addBatch({ }), "with a name and an object": assertProvider(function (provider) { provider.file('custom', { - dir: helpers.fixture('hierarchy'), + dir: helpers.fixture(''), file: 'store.json', search: true });