From 88b121ed100b668feec7b2d6b89b9bb0030f8163 Mon Sep 17 00:00:00 2001 From: Aparajit Pratap Date: Mon, 4 Nov 2024 09:54:50 -0500 Subject: [PATCH] cleanup test comments --- test/DynamoCoreWpfTests/PreferencesGeometryScalingTests.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/DynamoCoreWpfTests/PreferencesGeometryScalingTests.cs b/test/DynamoCoreWpfTests/PreferencesGeometryScalingTests.cs index d67c6ec97dc..677a71791fc 100644 --- a/test/DynamoCoreWpfTests/PreferencesGeometryScalingTests.cs +++ b/test/DynamoCoreWpfTests/PreferencesGeometryScalingTests.cs @@ -78,15 +78,14 @@ public void GeoScalingPopup_ShowsCorrectSetting() { //The PolycurveByPoints.dyn has ScaleFactor set to Extra Large Open(@"core\PolycurveByPoints.dyn"); - //Creates the Geometry Scaling Popup and set the ScaleFactor = 2 ( Medium) var geoScalingPopup = new GeometryScalingPopup(dynamoViewModel); geoScalingPopup.IsOpen = true; DispatcherUtil.DoEvents(); - //Check that the Medium radio button is checked var geoScalingVM = geoScalingPopup.ExtraLarge.DataContext as GeometryScalingViewModel; Assert.NotNull(geoScalingVM); + //Check that the Extra Large setting is selected. Assert.True(geoScalingVM.ScaleValue == 4); }