From 70ca5046877fc74799efbd4b5de7e2ba9c1fe9ca Mon Sep 17 00:00:00 2001 From: Brandon Thetford Date: Thu, 22 Feb 2024 16:01:59 -0700 Subject: [PATCH] This check is redundant with the rectangle check below --- UnitTests/View/ViewTests.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/UnitTests/View/ViewTests.cs b/UnitTests/View/ViewTests.cs index 2c36ce40c..a5ef315b4 100644 --- a/UnitTests/View/ViewTests.cs +++ b/UnitTests/View/ViewTests.cs @@ -809,11 +809,6 @@ At 0,0 // BUGBUG: IsInitialized must be true to process calculation r.BeginInit (); r.EndInit (); -#if DEBUG - Assert.Equal ("View(Vertical View)(0,0,1,13)", r.ToString ()); -#else - Assert.Equal ("View()(0,0,1,13)", r.ToString ()); -#endif Assert.False (r.CanFocus); Assert.False (r.HasFocus); Assert.Equal (new Rectangle (0, 0, 1, 13), r.Bounds);