Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Dec 5, 2023
1 parent 5b830a1 commit 625c118
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion servicetests/test_cases/mqtt3_jobs_cfg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"language": "CPP",
"runnable_file": "../build/servicetests/tests/JobsExecution/describe-job-execution",
"runnable_file": "../build/servicetests/tests/JobsExecution/job-execution",
"runnable_region": "us-east-1",
"runnable_main_class": "",
"arguments": [
Expand Down
2 changes: 1 addition & 1 deletion servicetests/test_cases/mqtt5_jobs_cfg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"language": "CPP",
"runnable_file": "../build/servicetests/tests/JobsExecution/describe-job-execution",
"runnable_file": "../build/servicetests/tests/JobsExecution/job-execution",
"runnable_region": "us-east-1",
"runnable_main_class": "",
"arguments": [
Expand Down
2 changes: 1 addition & 1 deletion servicetests/test_cases/test_jobs_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main():
else:
break;
except Exception as e:
print(f"Waiting for a newly created thing to be ready for the Job ({e})"
print(f"Waiting for a newly created thing to be ready for the Job {e})"
i = i + 1;
time.sleep(1);

Expand Down
2 changes: 1 addition & 1 deletion servicetests/tests/JobsExecution/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
# note: cxx-17 requires cmake 3.8, cxx-20 requires cmake 3.12
project(describe-job-execution CXX)
project(job-execution CXX)

file(GLOB SRC_FILES
"*.cpp"
Expand Down

0 comments on commit 625c118

Please sign in to comment.