Add module name to tests name

So they fit in with the rest better
This commit is contained in:
Jacob Bom 2017-06-20 21:49:00 +02:00
parent 0afe83ac30
commit 9f1b63b165

View file

@ -139,7 +139,7 @@ def test_official():
if test:
def fn():
return test(h4)
fn.description = '{}({})'.format(test.__name__, h4.text)
fn.description = '{}({}) ({})'.format(test.__name__, h4.text, __name__)
yield fn