Skip to content
Prev Previous commit
Next Next commit
Fix failing test
  • Loading branch information
AlexWaygood authored and erlend-aasland committed Feb 15, 2024
commit c5977a533c6123c9e5bcf12dfc2ec52888e6f845
2 changes: 1 addition & 1 deletion Lib/test/test_clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2603,7 +2603,7 @@ def test_cli_verbose(self):

def test_cli_help(self):
out = self.expect_success("-h")
self.assertIn("usage: clinic.py", out)
self.assertIn("Preprocessor for CPython C files.", out)

def test_cli_converters(self):
prelude = dedent("""
Expand Down
1 change: 0 additions & 1 deletion Tools/clinic/libclinic/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

def create_cli() -> argparse.ArgumentParser:
cmdline = argparse.ArgumentParser(
prog="Argument Clinic",
description="""Preprocessor for CPython C files.

The purpose of the Argument Clinic is automating all the boilerplate involved
Expand Down