From 7389adfa38ce817f2e49e0fbb7a039f93a3ced3c Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 5 Aug 2024 17:12:05 -0600 Subject: [PATCH] tests: update test expectation for last commit --- tests/test_qbsp.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_qbsp.cc b/tests/test_qbsp.cc index 164a979b..dec3332f 100644 --- a/tests/test_qbsp.cc +++ b/tests/test_qbsp.cc @@ -1263,7 +1263,10 @@ TEST(testmapsQ1, cubes) { const auto [bsp, bspx, prt] = LoadTestmapQ1("q1_cubes.map"); - EXPECT_EQ(bsp.dedges.size(), 25); + // 1 + 12 for cube A + 13 for cube B. + // for the "four way" vertical edge, two of the faces can share an edge on cube A, but this blocks any further + // sharing on that edge in cube B. + EXPECT_EQ(bsp.dedges.size(), 26); } /**