summaryrefslogtreecommitdiff
path: root/test_six.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-08-21 22:02:07 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-08-21 22:02:07 -0400
commit32297ca18c47febde51fbb315a5282b4506645fa (patch)
tree598ec5be7c60697b96107b9e1162dee4322c6098 /test_six.py
parent0d25e11477f96ff1d469a351f99240e4c715d378 (diff)
downloadsix-32297ca18c47febde51fbb315a5282b4506645fa.tar.gz
Combine the two tests into one and add a comment giving some indication as to why the additional behavior is included.
Diffstat (limited to 'test_six.py')
-rw-r--r--test_six.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_six.py b/test_six.py
index da7242d..fbc9a45 100644
--- a/test_six.py
+++ b/test_six.py
@@ -522,7 +522,7 @@ def test_add_metaclass():
assert issubclass(X, Base)
assert issubclass(X, Base2)
-def test_add_metaclass_extra_meta():
+ # additionally test a second-generation subclass of a type
class Meta1(type):
m1 = "m1"
class Meta2(Meta1):