diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 10:44:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 10:44:09 (GMT) |
commit | 213bcb8de1e8dc8ae2668bf56b1be420ff947f1e (patch) | |
tree | f3ec77d6cb2ed9b30ac7401709a251ddbebd51b2 /Lib/test/test_os.py | |
parent | 1ce3a6864c61406a9dd27c557cb281c051a67603 (diff) | |
download | cpython-213bcb8de1e8dc8ae2668bf56b1be420ff947f1e.zip cpython-213bcb8de1e8dc8ae2668bf56b1be420ff947f1e.tar.gz cpython-213bcb8de1e8dc8ae2668bf56b1be420ff947f1e.tar.bz2 |
Fix buildbot failure in test_os.py
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index e54ab4b..db7e9b4 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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) |