From aa614904615e3c09bef353fff101740f14b37e13 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 21 May 2016 15:45:51 -0500 Subject: [PATCH] Tests: Corrected number of defaults --- 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 982c8948..af084277 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 (), 23, "Rules all (\"\") --> 23"); + t.is ((int) r.all ().size (), 35, "Rules all (\"\") --> 35"); t.ok (r.all ("one.two").size () == 3, "Rules all (\"one.two\") --> 3"); return 0;