mirror of
https://github.com/python/cpython.git
synced 2025-08-22 01:35:16 +00:00
Fix deprecation warnings in test_commands.py
This commit is contained in:
parent
8a078d5b4c
commit
9bab5249aa
1 changed files with 4 additions and 4 deletions
|
@ -5,8 +5,8 @@
|
|||
import unittest
|
||||
import os, tempfile, re
|
||||
|
||||
from test.test_support import run_unittest, reap_children, import_module, \
|
||||
check_warnings
|
||||
from test.test_support import (run_unittest, reap_children, import_module,
|
||||
check_warnings)
|
||||
|
||||
from test.test_support import TestSkipped, run_unittest, reap_children, import_module
|
||||
# Silence Py3k warning
|
||||
|
@ -57,8 +57,8 @@ class CommandTests(unittest.TestCase):
|
|||
[^/]* # Skip user, group, size, and date.
|
||||
/\. # and end with the name of the file.
|
||||
'''
|
||||
|
||||
self.assertTrue(re.match(pat, getstatus("/."), re.VERBOSE))
|
||||
with check_warnings(quiet=True):
|
||||
self.assertTrue(re.match(pat, getstatus("/."), re.VERBOSE))
|
||||
|
||||
|
||||
def test_main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue