keep DeprecationWarning from failing test
diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py
index aa5dd8d..20d6fae 100644
--- a/Lib/test/test_importhooks.py
+++ b/Lib/test/test_importhooks.py
@@ -247,7 +247,7 @@
for n in sys.modules.keys():
if n.startswith(parent):
del sys.modules[n]
- with test_support.check_py3k_warnings():
+ with test_support.check_py3k_warnings(), test_support.check_warnings():
for mname in mnames:
m = __import__(mname, globals(), locals(), ["__dummy__"])
m.__loader__ # to make sure we actually handled the import