From 90b029782ef2e7d0ba10c005931b79b9b06f7723 Mon Sep 17 00:00:00 2001 From: indexzero Date: Thu, 24 Nov 2011 00:15:07 -0500 Subject: [PATCH] [test] Update tests to use optional options API --- test/stores/literal-test.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/stores/literal-test.js b/test/stores/literal-test.js index 93feafe..b5e5ac1 100644 --- a/test/stores/literal-test.js +++ b/test/stores/literal-test.js @@ -13,10 +13,8 @@ var vows = require('vows'), vows.describe('nconf/stores/literal').addBatch({ "An instance of nconf.Literal": { topic: new nconf.Literal({ - store: { - foo: 'bar', - one: 2 - } + foo: 'bar', + one: 2 }), "should have the correct methods defined": function (literal) { assert.equal(literal.type, 'literal');