From 28d3ba6c0406d87b38a8425f6a9652612afd3fef Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 9 Feb 2015 12:35:20 +0100 Subject: [PATCH] Fix a test about regex goto, don't know how that one even worked in the first place. --- test/test_api/test_full_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_api/test_full_name.py b/test/test_api/test_full_name.py index eddc5faf..58b77d05 100644 --- a/test/test_api/test_full_name.py +++ b/test/test_api/test_full_name.py @@ -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')