tests: properly name CheckupdatesTest class

This commit is contained in:
Hans-Christoph Steiner 2020-01-31 15:23:16 +01:00
parent 3df276cc3c
commit fdede914cd
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA
1 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@ import fdroidserver.metadata
from fdroidserver.exception import FDroidException
class CommonTest(unittest.TestCase):
'''fdroidserver/common.py'''
class CheckupdatesTest(unittest.TestCase):
'''fdroidserver/checkupdates.py'''
def setUp(self):
logging.basicConfig(level=logging.DEBUG)
@ -163,5 +163,5 @@ if __name__ == "__main__":
(fdroidserver.common.options, args) = parser.parse_args(['--verbose'])
newSuite = unittest.TestSuite()
newSuite.addTest(unittest.makeSuite(CommonTest))
newSuite.addTest(unittest.makeSuite(CheckupdatesTest))
unittest.main(failfast=False)