1
0

Trailing dots for Javadoc
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-03-05 10:21:41 +01:00
parent 2891e1f924
commit eb9cdf789b

View File

@ -90,8 +90,14 @@ def format_test_prefix(
) -> str:
indent = ''
str_builder = []
if with_javadoc:
str_builder += ['/** ', description, ' */', '\n']
str_builder += ['/** ']
str_builder += [description]
if not description.endswith(END_SYMBOLS):
str_builder += ['.']
str_builder += [' */', '\n']
str_builder += [indent, '@', annotation]
if with_display_name:
str_builder += ['\n', indent, '@DisplayName("']