From 14f88fb781e2618a1e7ceaf2a5caa8809ac3d181 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 6 Jul 2022 11:15:57 +0100 Subject: [PATCH] Fix cu2quPen_test.py for python 3.11 Credits to pnamade from https://github.com/fonttools/fonttools/pull/2655 --- Tests/pens/cu2quPen_test.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Tests/pens/cu2quPen_test.py b/Tests/pens/cu2quPen_test.py index db5178799..4ce5b5128 100644 --- a/Tests/pens/cu2quPen_test.py +++ b/Tests/pens/cu2quPen_test.py @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +import sys import unittest from fontTools.pens.cu2quPen import Cu2QuPen, Cu2QuPointPen @@ -257,8 +258,12 @@ class TestCu2QuPen(unittest.TestCase, _TestPenMixin): quadpen.closePath() self.assertGreaterEqual(len(log.records), 1) - self.assertIn("ignore_single_points is deprecated", - log.records[0].args[0]) + if sys.version_info < (3, 11): + self.assertIn("ignore_single_points is deprecated", + log.records[0].args[0]) + else: + self.assertIn("ignore_single_points is deprecated", + log.records[0].msg) # single-point contours were ignored, so the pen commands are empty self.assertFalse(pen.commands)