From 79f16f2e93c4637deee6e23b33178c970a3c4e5d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 10 Nov 2011 23:55:47 +0000 Subject: [PATCH] Avoid an assert. This test can be exended when wxIcon is wrapped. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- unittests/test_statbmp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_statbmp.py b/unittests/test_statbmp.py index f3790b29..5a63898a 100644 --- a/unittests/test_statbmp.py +++ b/unittests/test_statbmp.py @@ -27,10 +27,10 @@ class statbmp_Tests(wtc.WidgetTestCase): bmp = wx.Bitmap(pngFile) sb = wx.StaticBitmap(self.frame, label=bmp) - sb.Icon sb.Bitmap sb.Bitmap = wx.Bitmap(pngFile2) + #sb.Icon # TODO: this asserts if SetIcon hasn't been called #---------------------------------------------------------------------------