瀏覽代碼

Fix ColorPickerTests.

BDisp 1 年之前
父節點
當前提交
408ae43e74
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      UnitTests/Views/ColorPickerTests.cs

+ 3 - 2
UnitTests/Views/ColorPickerTests.cs

@@ -48,8 +48,9 @@ public class ColorPickerTests
     {
         var colorPicker = new ColorPicker { X = 0, Y = 0, Height = 4, Width = 32 };
         Assert.Equal (ColorName.Black, colorPicker.SelectedColor);
-        Application.Top.Add (colorPicker);
-        Application.Begin (Application.Top);
+        var top = new Toplevel ();
+        top.Add (colorPicker);
+        Application.Begin (top);
 
         Assert.False (colorPicker.OnMouseEvent (new MouseEvent ()));