From 2e7eab76ecaf2870bdd37ce13dfd96ac76fc462b Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Thu, 2 Mar 2017 13:44:45 +0100 Subject: [PATCH] Tests: Used fully objects instead of shorter strings. --- tests/config.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/config.js b/tests/config.js index deaa6ef..5963171 100644 --- a/tests/config.js +++ b/tests/config.js @@ -74,12 +74,18 @@ describe( 'Config', () => { first: 1, second: 2 }, - 'b.foo.first': 1, - 'b.foo.second': 2 + b: { + foo: { + first: 1, + second: 2, + } + } }; const parameters = { - 'a.third': 3, + a: { + third: 3 + }, b: { foo: { first: 3,