Fix cu2quPen_test.py for python 3.11

Credits to pnamade from https://github.com/fonttools/fonttools/pull/2655
This commit is contained in:
Cosimo Lupo 2022-07-06 11:15:57 +01:00
parent 5ca57917c6
commit 14f88fb781

View File

@ -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)
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)