diff options
Diffstat (limited to 'test/plugins/xml/XmlParserTest.cpp')
-rw-r--r-- | test/plugins/xml/XmlParserTest.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/plugins/xml/XmlParserTest.cpp b/test/plugins/xml/XmlParserTest.cpp index ce53eb3..2046940 100644 --- a/test/plugins/xml/XmlParserTest.cpp +++ b/test/plugins/xml/XmlParserTest.cpp @@ -53,14 +53,17 @@ const char *TEST_DATA = " <head>\n" " <typesystem name=\"color\">\n" " <types>\n" - " <struct name=\"blub\">\n" - " <field name=\"a\" type=\"int\"/>\n" - " </struct>\n" " <struct name=\"color\" parent=\"blub\">\n" " <field name=\"r\" type=\"int\"/>\n" " <field name=\"g\" type=\"int\"/>\n" " <field name=\"b\" type=\"int\"/>\n" " </struct>\n" + " <struct name=\"blub\">\n" + " <field name=\"a\" type=\"int\"/>\n" + " </struct>\n" + " <struct name=\"blub\">\n" + " <field name=\"a\" type=\"int\"/>\n" + " </struct>\n" " </types>\n" " </typesystem>\n" " </head>\n" |