From 1c275a213c86b7a9afac82c10128040e7b874474 Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 2 Aug 2016 23:47:04 +0200 Subject: [PATCH] Fix parent definition of BaseResolverTests class This class needs to have parent 'unittest.TestCase' otherwise test is not executed. With this commit, BaseResolverTests are executed (number of tests increased, yay) --- tests/test_resolver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_resolver.py b/tests/test_resolver.py index cd7b42c3..8e0086b9 100644 --- a/tests/test_resolver.py +++ b/tests/test_resolver.py @@ -102,7 +102,8 @@ class FakeAnswer(object): def __init__(self, expiration): self.expiration = expiration -class BaseResolverTests(object): + +class BaseResolverTests(unittest.TestCase): if sys.platform != 'win32': def testRead(self): -- 2.47.3