8000 test names should start with `test` · henrypan/python-api@f49d412 · GitHub
[go: up one dir, main page]

Skip to content

Commit f49d412

Browse files
committed
test names should start with test
1 parent 7aa5561 commit f49d412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tests/test_core/test_image/test_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ def _test(self):
6363

6464
_test = test_generator(*args)
6565
arg_string = ', '.join([str(a) for a in args])
66-
test_name = test_generator.__name__.replace('generate', 'test')
66+
test_name = test_generator.__name__.replace('_generate', 'test')
6767
test_name += '({})'.format(arg_string)
6868
setattr(TestImage, test_name, _test)

0 commit comments

Comments
 (0)
0