Superclass typo fix
This didn't actually affect anything (because all the MI3 constructor
does is invoke MI2 with the same arguments anyway).
diff --git a/tests/test_multiple_inheritance.py b/tests/test_multiple_inheritance.py
index 434f477..398687c 100644
--- a/tests/test_multiple_inheritance.py
+++ b/tests/test_multiple_inheritance.py
@@ -72,7 +72,7 @@
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):