()
| 31 | |
| 32 | |
| 33 | def test_normalize_argparse_choice_quotes(): |
| 34 | text = ( |
| 35 | "cz: error: argument {init,commit}: invalid choice: 'invalidCommand' " |
| 36 | "(choose from 'init', 'commit')" |
| 37 | ) |
| 38 | |
| 39 | assert normalize_argparse_choice_quotes(text) == ( |
| 40 | "cz: error: argument {init,commit}: invalid choice: 'invalidCommand' " |
| 41 | "(choose from init, commit)" |
| 42 | ) |
| 43 | |
| 44 | |
| 45 | @pytest.mark.usefixtures("python_version", "consistent_terminal_output") |
nothing calls this directly
no test coverage detected
searching dependent graphs…