Fix a test about regex goto, don't know how that one even worked in the first place.

This commit is contained in:
Dave Halter
2015-02-09 12:35:20 +01:00
parent a095f8d9e0
commit 28d3ba6c04

View File

@@ -45,7 +45,7 @@ class TestFullNameWithGotoDefinitions(MixinTestFullName, TestCase):
self.check("""
import re
any_re = re.compile('.*')
any_re""", 're.RegexObject')
any_re""", '_sre.compile.SRE_Pattern')
def test_from_import(self):
self.check('from os import path', 'os.path')