Kaydet (Commit) 4975a1f3 authored tarafından Christian Heimes's avatar Christian Heimes

Minor cleanup

üst 4a22b5de
......@@ -565,7 +565,7 @@ class TestLoader:
name = obj.__name__
inst = parent(name)
# static methods follow a different path
if not(isinstance(getattr(inst, name), types.FunctionType)):
if not isinstance(getattr(inst, name), types.FunctionType):
return TestSuite([inst])
elif isinstance(obj, TestSuite):
return obj
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment