From 26b3b048e9a355db86869f9454af2a7c84523981 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 24 May 2016 10:23:53 -0400 Subject: [PATCH] tests: Drop dead code --- uvloop/_testbase.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/uvloop/_testbase.py b/uvloop/_testbase.py index def94a4..0a79c41 100644 --- a/uvloop/_testbase.py +++ b/uvloop/_testbase.py @@ -42,12 +42,6 @@ class BaseTestCaseMeta(type): return TestCaseDict(name) def __new__(mcls, name, bases, dct): - tests = set() - for base in bases: - for meth in dir(base): - if meth.startswith('test_'): - tests.add(meth) - for test_name in dct: if not test_name.startswith('test_'): continue