Skip to content

Commit 9958e35

Browse files
authored
Merge pull request #281 from nim65s/devel
unit tests: fix super() for python 2
2 parents 2e5fb1c + 34107b8 commit 9958e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/python/test_eigen_ref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test(mat):
4949

5050
class ModifyBlockImpl(modify_block):
5151
def __init__(self):
52-
super().__init__()
52+
super(ModifyBlockImpl, self).__init__()
5353

5454
def call(self, mat):
5555
n, m = mat.shape

0 commit comments

Comments
 (0)