Skip to content

Commit

Permalink
Fix certificate path
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Nov 29, 2023
1 parent 4283321 commit d9670ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions servicetests/test_cases/test_jobs_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ def main():
SecretId="ci/JobsServiceClientTest/policy_name")["SecretString"]

# Temporary certificate/key file path.
certificate_path = os.path.join(os.getcwd(), "tests/jobs_execution/certificate.pem.crt")
key_path = os.path.join(os.getcwd(), "tests/jobs_execution/private.pem.key")
certificate_path = os.path.join(os.getcwd(), "servicetests/certificate.pem.crt")
#certificate_path = os.path.join(os.getcwd(), "tests/jobs_execution/certificate.pem.crt")
key_path = os.path.join(os.getcwd(), "servicetests/private.pem.key")
#key_path = os.path.join(os.getcwd(), "tests/jobs_execution/private.pem.key")

try:
ci_iot_thing.create_iot_thing(
Expand Down

0 comments on commit d9670ab

Please sign in to comment.