martinzink commented on code in PR #2099:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2099#discussion_r2799500454
##########
behave_framework/src/minifi_test_framework/steps/core_steps.py:
##########
@@ -36,16 +36,21 @@
@when("all instances start up")
def step_impl(context: MinifiTestContext):
for container in context.containers.values():
- assert container.deploy() or container.log_app_output()
+ assert container.deploy(context)
logging.debug("All instances started up")
@when("the MiNiFi instance starts up")
def step_impl(context: MinifiTestContext):
- assert context.get_or_create_default_minifi_container().deploy()
+ assert context.get_or_create_default_minifi_container().deploy(context)
logging.debug("MiNiFi instance started up")
+@when("the MiNiFi instance is started without assertions")
Review Comment:
👍 good catch, removed in
https://github.com/apache/nifi-minifi-cpp/pull/2099/changes/925076339be8d82c2e733659bd7d0fa9c0efbd53#diff-87e7792003d4f9003905f53f9b09d3086ad0080104bb6bf18d3eeac2f7a3648eL49-L53
--
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]