From 5a0382eeb69514de320e894456f39009bea33cf7 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 14 Aug 2007 17:53:30 +0000 Subject: [PATCH] Fix a missed instance of test.test_support.guard_warnings_filter (which was recently removed). --- Lib/test/test_macostools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_macostools.py b/Lib/test/test_macostools.py index 40b690a1f6a..eea3601cf30 100644 --- a/Lib/test/test_macostools.py +++ b/Lib/test/test_macostools.py @@ -52,7 +52,7 @@ class TestMacostools(unittest.TestCase): def test_touched(self): # This really only tests that nothing unforeseen happens. import warnings - with test_support.guard_warnings_filter(): + with test_support.catch_warning(): warnings.filterwarnings('ignore', 'macostools.touched*', DeprecationWarning) macostools.touched(test_support.TESTFN)