Skip to content

Commit 0a5a650

Browse files
committed
Update previous unit test with corrected number of boundary ids
1 parent 0cd3397 commit 0a5a650

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

tests/mesh/mesh_input.C

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,12 @@ public:
253253
// reader threw an exception while trying to read this mesh.
254254
if (mesh.is_serial())
255255
{
256-
// Mesh has 15 boundary ids total (including edge and side ids).
257-
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(15), bi.n_boundary_ids());
256+
// Mesh has 26 boundary ids total (including edge and side ids).
257+
// ss_prop1 = 200, 201 ;
258+
// ed_prop1 = 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010,
259+
// 8011, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9010,
260+
// 9011, 9012 ;
261+
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(26), bi.n_boundary_ids());
258262

259263
// We can binary_search() the build_edge_list() which is sorted
260264
// in lexicographical order before it's returned.

0 commit comments

Comments
 (0)