From 85d63c3bcd233d15e140d3cff2c244148b5c141f Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Sat, 29 Jul 2017 03:54:25 -0400 Subject: [PATCH] Superclass typo fix This didn't actually affect anything (because all the MI3 constructor does is invoke MI2 with the same arguments anyway). --- tests/test_multiple_inheritance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_multiple_inheritance.py b/tests/test_multiple_inheritance.py index 434f477ae..398687c7c 100644 --- a/tests/test_multiple_inheritance.py +++ b/tests/test_multiple_inheritance.py @@ -72,7 +72,7 @@ def test_multiple_inheritance_python(): class MI4(MI3, m.Base2): def __init__(self, i, j, k): - MI2.__init__(self, j, k) + MI3.__init__(self, j, k) m.Base2.__init__(self, i) class MI5(m.Base2, B1, m.Base1):