Commit c9c29e2a authored by Florent Xicluna's avatar Florent Xicluna

I get it wrong in r84097: s/relative/absolute/

parent e29e6bff
...@@ -465,13 +465,14 @@ class RelativeImportTests(unittest.TestCase): ...@@ -465,13 +465,14 @@ class RelativeImportTests(unittest.TestCase):
def test_absolute_import_without_future(self): def test_absolute_import_without_future(self):
# If explicit relative import syntax is used, then do not try # If explicit relative import syntax is used, then do not try
# to perform a relative import in the face of failure. # to perform an absolute import in the face of failure.
# Issue #7902. # Issue #7902.
with self.assertRaises(ImportError): with self.assertRaises(ImportError):
from .os import sep from .os import sep
self.fail("explicit relative import triggered an " self.fail("explicit relative import triggered an "
"implicit absolute import") "implicit absolute import")
class OverridingImportBuiltinTests(unittest.TestCase): class OverridingImportBuiltinTests(unittest.TestCase):
def test_override_builtin(self): def test_override_builtin(self):
# Test that overriding builtins.__import__ can bypass sys.modules. # Test that overriding builtins.__import__ can bypass sys.modules.
......
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