X Tutup
Skip to content

Commit 9f1b63b

Browse files
committed
Add module name to tests name
So they fit in with the rest better
1 parent 0afe83a commit 9f1b63b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_official.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def test_official():
139139
if test:
140140
def fn():
141141
return test(h4)
142-
fn.description = '{}({})'.format(test.__name__, h4.text)
142+
fn.description = '{}({}) ({})'.format(test.__name__, h4.text, __name__)
143143
yield fn
144144

145145

0 commit comments

Comments
 (0)
X Tutup