diff options
Diffstat (limited to 'test/regrtest.py')
-rw-r--r-- | test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regrtest.py b/test/regrtest.py index 9868b3cf7..c8fe42a20 100644 --- a/test/regrtest.py +++ b/test/regrtest.py @@ -120,7 +120,7 @@ class NonRegrTC(TestCase): def test_decimal_inference(self): linter.check('regrtest_data/decimal_inference.py') got = linter.reporter.finalize().strip() - self.failUnlessEqual(got, "E: 7: Instance of 'Context' has no 'prec' member") + self.failUnlessEqual(got, "E: 7: Instance of 'Context' has no 'prec' member (but some types could not be inferred)") def test_descriptor_crash(self): for fname in os.listdir('regrtest_data'): |