Commit fa72da06 authored by Mark Dickinson's avatar Mark Dickinson

Remove use of skipUnless; this was causing test_structmembers to fail.

parent 30b360a6
......@@ -52,7 +52,7 @@ class ReadWriteTests(unittest.TestCase):
ts.T_ULONG = ULONG_MAX
self.assertEquals(ts.T_ULONG, ULONG_MAX)
@unittest.skipUnless(hasattr(ts, "T_LONGLONG"), "long long not present")
if hasattr(ts, "T_LONGLONG"):
def test_longlong(self):
ts.T_LONGLONG = LLONG_MAX
self.assertEquals(ts.T_LONGLONG, LLONG_MAX)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment