Fixed one unit test (remove file path reference)

This commit is contained in:
Matthias Koefferlein 2024-04-20 23:35:38 +02:00
parent ac5b3073f1
commit 753f2cd164
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ TEST(24_recursive_calls)
reader.read (is, nl);
EXPECT_EQ (false, true);
} catch (tl::Exception &ex) {
EXPECT_EQ (ex.msg (), "Subcircuit 'C1' called recursively in /home/matthias/klayout/master/testdata/algo/nreader24.cir, line 8");
EXPECT_EQ (ex.msg ().find ("Subcircuit 'C1' called recursively in"), size_t (0));
}
}