diff options
Diffstat (limited to 'ms/blueprintsprocessor')
2 files changed, 4 insertions, 4 deletions
diff --git a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/PythonTestScript.py b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/PythonTestScript.py index 42b611b88..d2d023b9d 100644 --- a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/PythonTestScript.py +++ b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/PythonTestScript.py @@ -1,9 +1,9 @@ class PythonTestScript(): def process(self, execution_request): - print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH + print("Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH) return None def recover(self, runtime_exception, execution_request): - print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH + print("Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH) return None diff --git a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/scripts/SamplePythonComponentNode.py b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/scripts/SamplePythonComponentNode.py index f1b614a59..7150e4378 100644 --- a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/scripts/SamplePythonComponentNode.py +++ b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/scripts/SamplePythonComponentNode.py @@ -5,10 +5,10 @@ from blueprint_constants import * class SamplePythonComponentNode(AbstractPythonComponentFunction): def process(self, execution_request): - print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH + print("Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH) return None def recover(self, runtime_exception, execution_request): - print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH + print("Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH) return None |