From db795111848f8c30c49d8986ca7a8b1fa2a8ea24 Mon Sep 17 00:00:00 2001 From: Daniel_M_Williams Date: Fri, 14 Aug 2020 18:09:39 -0400 Subject: [PATCH] [fix][comment] fixed test explanatory comment to be accurate --- core/test/net/sf/openrocket/rocketcomponent/RocketTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/test/net/sf/openrocket/rocketcomponent/RocketTest.java b/core/test/net/sf/openrocket/rocketcomponent/RocketTest.java index ff5d05b75..e75146eca 100644 --- a/core/test/net/sf/openrocket/rocketcomponent/RocketTest.java +++ b/core/test/net/sf/openrocket/rocketcomponent/RocketTest.java @@ -245,7 +245,7 @@ public class RocketTest extends BaseTestCase { body.setOuterRadiusAutomatic(true); assertEquals(" radius match: ", expRadius, body.getOuterRadius(), EPSILON); } - { // test auto-radius within a stage: body tube -> trailing transition + { // test auto-radius within a stage: tail cone -> body tube final BodyTube body = (BodyTube) booster.getChild(0); assertEquals(" radius match: ", expRadius, body.getOuterRadius(), EPSILON); final Transition tailCone = (Transition)booster.getChild(1);