Add types for leaves
Change-Id: Ibea2945920e523d2f3439eed2c12a5d719d178f1
diff --git a/tests/presence_containers.cpp b/tests/presence_containers.cpp
index 72c9daf..8958627 100644
--- a/tests/presence_containers.cpp
+++ b/tests/presence_containers.cpp
@@ -33,19 +33,19 @@
SECTION("a")
{
input = "a";
- expectedPath.m_nodes = { container_("a") };
+ expectedPath.m_nodes = {container_("a")};
}
SECTION("b/b2")
{
input = "b/b2";
- expectedPath.m_nodes = { container_("b"), container_("b2") };
+ expectedPath.m_nodes = {container_("b"), container_("b2")};
}
SECTION("a/a2/a3")
{
input = "a/a2/a3";
- expectedPath.m_nodes = { container_("a"), container_("a2"), container_("a3") };
+ expectedPath.m_nodes = {container_("a"), container_("a2"), container_("a3")};
}
SECTION("list[quote=lol]/contInList")
@@ -53,7 +53,7 @@
input = "list[quote=lol]/contInList";
auto keys = std::map<std::string, std::string>{
{"quote", "lol"}};
- expectedPath.m_nodes = { listElement_("list", keys), container_("contInList") };
+ expectedPath.m_nodes = {listElement_("list", keys), container_("contInList")};
}
create_ expectedCreate;