Fix tests, needed named arg.

This commit is contained in:
Ben Kiel 2018-06-12 09:15:36 -05:00
parent 83303d56a7
commit f81e9b8c6f

View File

@ -1176,7 +1176,7 @@ def _buildOutlineContourFormat2(pen, contour, identifiers, validate):
pen.beginPath()
warn("The beginPath method needs an identifier kwarg. The contour's identifier value has been discarded.", DeprecationWarning)
if len(contour):
_validateAndMassagePointStructures(contour, pointAttributesFormat2, validate)
_validateAndMassagePointStructures(contour, pointAttributesFormat2, validate=validate)
_buildOutlinePointsFormat2(pen, contour, identifiers, validate)
pen.endPath()