From f0f6133a1497ba8fa921ee74a5ccef5103be2768 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Fri, 28 Feb 2020 15:12:29 +0100 Subject: [PATCH] [Tests] we still need numpy matrices here --- python/test/quick.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/test/quick.py b/python/test/quick.py index 36d0413..ec1a16c 100644 --- a/python/test/quick.py +++ b/python/test/quick.py @@ -1,8 +1,11 @@ import unittest +import eigenpy from numpy import matrix -from libparametric_curves_pywrap import (curve_constraints, forcecurve, polynomial, spline) +from libparametric_curves_pywrap import curve_constraints, forcecurve, polynomial, spline + +eigenpy.switchToNumpyMatrix() class ParametricCurvesQuickTests(unittest.TestCase):