summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test_six.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test_six.py b/test_six.py
index 9e39444..766da9e 100644
--- a/test_six.py
+++ b/test_six.py
@@ -634,6 +634,7 @@ def test_with_metaclass():
assert type(X) is Meta
assert issubclass(X, Base)
assert issubclass(X, Base2)
+ assert X.__mro__ == (X, Base, Base2, object)
def test_add_metaclass():