Fix tests for Python 3.13

Fix expected argparse --help output to account for changes in Python
3.13.

Closes-Bug: 2069108
Change-Id: Ie221e5f5b369930f015a74998f50ddb473b53b94
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2024-06-12 07:47:18 +02:00
parent 3f0c6e9499
commit 4f916edb45

View File

@ -264,8 +264,14 @@ class HelpTestCase(BaseTestCase):
self.conf.register_cli_opt(uvw)
self.conf([])
self.conf.print_help(file=f)
self.assertIn('--a-bc A_BC, --d-ef A_BC, --d_ef A_BC', f.getvalue())
self.assertIn('--u-vw U_VW, --x-yz U_VW, --x_yz U_VW', f.getvalue())
if sys.version_info >= (3, 13):
self.assertIn('--a-bc, --d-ef, --d_ef A_BC', f.getvalue())
self.assertIn('--u-vw, --x-yz, --x_yz U_VW', f.getvalue())
else:
self.assertIn('--a-bc A_BC, --d-ef A_BC, --d_ef A_BC',
f.getvalue())
self.assertIn('--u-vw U_VW, --x-yz U_VW, --x_yz U_VW',
f.getvalue())
class FindConfigFilesTestCase(BaseTestCase):