From 1848134afa1f3a4a3d0c77e5ff3a8b7bcf29ebf3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 6 Jun 2012 01:15:39 +0000 Subject: [PATCH] remove expectedFailure decorator, because it should not fail now with the new sip. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- unittests/test_joystick.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/unittests/test_joystick.py b/unittests/test_joystick.py index 73825c32..13228da8 100644 --- a/unittests/test_joystick.py +++ b/unittests/test_joystick.py @@ -28,10 +28,8 @@ class joystick_Tests(wtc.WidgetTestCase): wx.EVT_JOYSTICK_EVENTS - @unittest.expectedFailure def test_joystick2(self): - # Creating a Joystick object should fail on Mac. Currently it isn't... - # We'll need a new feature added to sip to get it. + # Creating a Joystick object should fail on Mac. if 'wxMac' in wx.PlatformInfo: with self.assertRaises(NotImplementedError): j = wx.adv.Joystick()