From 4708a3b3261968df4cb231d95779355bf8df77a4 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 20 May 2016 15:10:07 -0500 Subject: [PATCH] Tests: Corrected number of default settings --- test/rules.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rules.t.cpp b/test/rules.t.cpp index 39ac7a44..a9ce01a2 100644 --- a/test/rules.t.cpp +++ b/test/rules.t.cpp @@ -45,7 +45,7 @@ int main (int, char**) r.set ("one.two", 12); r.set ("one.two.three", 123); r.set ("one.two.four", 124); - t.is ((int) r.all ().size (), 8, "Rules all (\"\") --> 8"); + t.is ((int) r.all ().size (), 14, "Rules all (\"\") --> 14"); t.ok (r.all ("one.two").size () == 3, "Rules all (\"one.two\") --> 3"); return 0;