There was an error while loading. Please reload this page.
1 parent df2d081 commit f47d450Copy full SHA for f47d450
2 files changed
src/pgpro_pytest_html_json_extractor/__main__.py
@@ -102,7 +102,7 @@ def parse_arguments() -> argparse.Namespace:
102
choices=list(UnescapeLogsMode),
103
default=UnescapeLogsMode.AUTO,
104
help="Unescape HTML entities in logs (default: {})".format(
105
- UnescapeLogsMode.AUTO.name,
+ UnescapeLogsMode.AUTO,
106
),
107
)
108
tests/integration/test_set001__cli.py
@@ -60,6 +60,7 @@ def test_cli_002__help():
60
assert "--no-check-json" in output
61
assert "--replace" in output
62
assert "--verbose" in output
63
+ assert "Unescape HTML entities in logs (default: auto)" in output
64
return
65
66
0 commit comments