Fix typos

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2022-08-17 21:23:43 +02:00
parent 79a02f73ca
commit d256580c4e
5 changed files with 8 additions and 9 deletions

View file

@ -30,7 +30,7 @@ class MetaTest(type):
# Name of function must start with test_ to be ran by unittest
func.__name__ = "test_{0}".format(i)
# Attach the new test to the testclass
# Attach the new test to the test class
dct[func.__name__] = func
return super(MetaTest, meta).__new__(meta, classname, bases, dct)