From 9c9047d89cd4c3bef15e2b76f7a9276ae158038e Mon Sep 17 00:00:00 2001 From: Mateusz Malicki Date: Mon, 2 Feb 2015 12:41:50 +0100 Subject: [PATCH] Fix test case ConfigurationSuite/FromKVWithDefaultsTest [Bug/Feature] ConfigurationSuite/FromKVWithDefaultsTest fail [Cause] No field in sample json string [Solution] Added required field [Verification] Run ConfigurationSuite tests Change-Id: I113f76f2d2edb700a490241d6993a8e3a506a47b --- tests/unit_tests/config/testconfig-example.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit_tests/config/testconfig-example.hpp b/tests/unit_tests/config/testconfig-example.hpp index c05b63c..6c14719 100644 --- a/tests/unit_tests/config/testconfig-example.hpp +++ b/tests/unit_tests/config/testconfig-example.hpp @@ -168,6 +168,7 @@ const std::string jsonEmptyTestString = "\"emptyIntVector\": [ ], " "\"intVector\": [ ], " "\"stringVector\": [ ], " + "\"doubleVector\": [ ], " "\"subObj\": { \"intVal\": 0, \"intVector\": [ ], \"subSubObj\": { \"intVal\": 0 } }, " "\"subVector\": [ ], " "\"union1\": { \"type\": \"int\", \"value\": 0 }, " -- 2.7.4