mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 11:30:06 +01:00
Fix some typos
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -162,7 +162,7 @@ def run():
|
||||
}
|
||||
return cgctx;
|
||||
#else
|
||||
wxPyRaiseNotImplemented
|
||||
wxPyRaiseNotImplemented();
|
||||
_isErr = 1;
|
||||
return NULL;
|
||||
#endif""")
|
||||
|
||||
@@ -117,8 +117,8 @@ class DCTests(wtc.WidgetTestCase):
|
||||
h = dc.GetCGContext()
|
||||
self.assertNotEqual(h, 0)
|
||||
else:
|
||||
with self.assertRaises(NotImplemented):
|
||||
h = dc.GetGCContext()
|
||||
with self.assertRaises(NotImplementedError):
|
||||
h = dc.GetCGContext()
|
||||
|
||||
def test_trickyStuff(self):
|
||||
# execute some tricky tweaks to make sure they work are as they are supposed to.
|
||||
|
||||
Reference in New Issue
Block a user