Fixed unit tests.

This commit is contained in:
Matthias Koefferlein 2020-05-12 21:16:12 +02:00
parent 8b083a8330
commit 4fbb6286ac
1 changed files with 2 additions and 2 deletions

View File

@ -170,6 +170,6 @@ TEST(6)
texts.insert_into (&ly, top_cell, l1);
db::Region r (db::RecursiveShapeIterator (ly, ly.cell (top_cell), l1));
EXPECT_EQ (r.to_string (), "(-10,-21;9,20;50,51;91,80);(-10,-21;9,20;110,121;91,80)");
db::Texts r (db::RecursiveShapeIterator (ly, ly.cell (top_cell), l1));
EXPECT_EQ (r.to_string (), "('abc',r0 100,-200);('uvw',r0 110,210)");
}