lint / review cleanups

This commit is contained in:
bgbsww
2024-01-22 11:01:19 -05:00
parent 1490de0087
commit 31a6eb5a4a
5 changed files with 33 additions and 38 deletions

View File

@@ -426,8 +426,8 @@ TEST_F(TopoShapeExpansionTest, splitWires)
EXPECT_FLOAT_EQ(PartTestHelpers::getLength(wire.getShape()), 2 + 2 + 3 + 3);
EXPECT_FLOAT_EQ(PartTestHelpers::getLength(inner.front().getShape()), M_PI * R * 2);
EXPECT_EQ(wire.getShape().Orientation(), TopAbs_REVERSED);
for (Part::TopoShape ts : inner) {
EXPECT_EQ(ts.getShape().Orientation(), TopAbs_FORWARD);
for (Part::TopoShape& shape : inner) {
EXPECT_EQ(shape.getShape().Orientation(), TopAbs_FORWARD);
}
}