Kaydet (Commit) 213bcb8d authored tarafından Ezio Melotti's avatar Ezio Melotti

Fix buildbot failure in test_os.py

üst 1ce3a686
......@@ -3,7 +3,10 @@
Roger E. Masse revised strategy by Barry Warsaw
"""
from test.test_support import verbose,TestSkipped, import_module
import warnings
warnings.simplefilter('always')
dl = import_module('dl', deprecated=True)
warnings.resetwarnings()
sharedlibs = [
('/usr/lib/libc.so', 'getpid'),
......
......@@ -500,8 +500,7 @@ class DevNullTests (unittest.TestCase):
class URandomTests (unittest.TestCase):
def test_urandom(self):
try:
with test_support._check_py3k_warnings(
('integer argument expected, got float', DeprecationWarning)):
with test_support.check_warnings():
self.assertEqual(len(os.urandom(1)), 1)
self.assertEqual(len(os.urandom(10)), 10)
self.assertEqual(len(os.urandom(100)), 100)
......
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