[editor] Change xml root to comaps

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-05-19 20:55:08 +07:00
committed by Konstantin Pastbin
parent 54ab965822
commit 2b7246d463
5 changed files with 10 additions and 13 deletions

View File

@@ -16,9 +16,9 @@ using platform::tests_support::ScopedFile;
void CheckGeneralTags(pugi::xml_document const & doc)
{
auto const types = doc.select_nodes("/omaps/editor/types");
auto const types = doc.select_nodes("/comaps/editor/types");
TEST(!types.empty(), ());
auto const fields = doc.select_nodes("/omaps/editor/fields");
auto const fields = doc.select_nodes("/comaps/editor/fields");
TEST(!fields.empty(), ());
}