diff --git a/functional_tests/test_csr.py b/functional_tests/test_csr.py index 18368f32f025034d6c5c0d9380fffc5e94e0b77d..cb7f78da8b4b01f0f9cd2b12aacc8cf4f1ab7a2c 100644 --- a/functional_tests/test_csr.py +++ b/functional_tests/test_csr.py @@ -37,22 +37,22 @@ def test_commands_report_csr_option_as_available(): stdout, stderr, exit_code = run_command("gimmecert", "server", "-h") # John notcies the option for passing-in a CSR. - assert " --csr " in stdout - assert " -c " in stdout + assert " --csr" in stdout + assert " -c" in stdout # He checks help for the client command. stdout, stderr, exit_code = run_command("gimmecert", "client", "-h") # John notcies the option for passing-in a CSR. - assert " --csr " in stdout - assert " -c " in stdout + assert " --csr" in stdout + assert " -c" in stdout # He checks help for the renew command. stdout, stderr, exit_code = run_command("gimmecert", "renew", "-h") # John notcies the option for passing-in a CSR. - assert " --csr " in stdout - assert " -c " in stdout + assert " --csr" in stdout + assert " -c" in stdout def test_client_certificate_issuance_by_passing_csr_as_file_rsa(tmpdir):