Ported a test framework fix from master branch

This commit is contained in:
Matthias Koefferlein 2024-02-11 13:58:40 +01:00
parent da3e7ab4f7
commit 2ba48998fd
1 changed files with 3 additions and 0 deletions

View File

@ -595,6 +595,9 @@ TEST(Bug_1474)
db::OASISReader reader (file);
reader.read (layout);
EXPECT_EQ (false, true);
} catch (tl::CancelException &ex) {
// Seen when private test data is not installed
throw;
} catch (tl::Exception &ex) {
EXPECT_EQ (ex.msg (), "Cell named ADDHX2 with ID 4 was already given name SEDFFTRX2 (position=763169, cell=)");
}