From 34107b89a938ef9b19d71eb4a1cb6da85864ec1f Mon Sep 17 00:00:00 2001
From: Guilhem Saurel <guilhem.saurel@laas.fr>
Date: Tue, 3 May 2022 16:45:23 +0200
Subject: [PATCH] unit tests: fix super() for python 2

---
 unittest/python/test_eigen_ref.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unittest/python/test_eigen_ref.py b/unittest/python/test_eigen_ref.py
index 0434cca..5b6282e 100644
--- a/unittest/python/test_eigen_ref.py
+++ b/unittest/python/test_eigen_ref.py
@@ -49,7 +49,7 @@ def test(mat):
 
     class ModifyBlockImpl(modify_block):
         def __init__(self):
-            super().__init__()
+            super(ModifyBlockImpl, self).__init__()
 
         def call(self, mat):
             n, m = mat.shape
-- 
GitLab