lordgamez commented on code in PR #1383:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1383#discussion_r943372440
##########
docker/test/integration/MiNiFi_integration_test_driver.py:
##########
@@ -132,7 +132,9 @@ def
generate_input_port_for_remote_process_group(remote_process_group, name):
input_port_node.set_uuid(uuid.uuid3(remote_process_group.get_uuid(),
"input_port"))
return input_port_node
- def add_test_data(self, path, test_data, file_name=str(uuid.uuid4())):
+ def add_test_data(self, path, test_data, file_name=None):
+ if file_name is None:
+ file_name = str(uuid.uuid4())
Review Comment:
Oh I see, thanks, good to know!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]