Browse Source

Reformat XmlNodeTest class

Patrick-Christopher Mattulat 2 years ago
parent
commit
11a66f2ab0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/cases/io/xml/XmlNodeTest.cpp

+ 1 - 1
test/cases/io/xml/XmlNodeTest.cpp

@@ -905,7 +905,7 @@ namespace
     attribute->setValue("important");
     singleLineElement->addAttributeToEnd(attribute);
 
-    ls_std::String xmlContent {singleLineElement->toXml()};
+    ls_std::String xmlContent{singleLineElement->toXml()};
     std::string expectedXmlString = R"(<info id="important" />)";
 
     ASSERT_TRUE(xmlContent.contains(expectedXmlString));