diff --git a/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py b/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py index 33a9d206b2..9f903169c0 100644 --- a/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py +++ b/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py @@ -61,12 +61,11 @@ def test_secrets_plugin_no_url_configured(): ): runner = CliEntryBasedTestRunner(vdk_plugin_control_cli, secrets_plugin) - # TODO: Uncomment this after vdk-core release - # result: Result = runner.invoke( - # ["run", jobs_path_from_caller_directory("simple-job")] - # ) - # # job that doesn't explicitly use secrets should fail due to secrets overrides in core - # cli_assert_equal(1, result) + result: Result = runner.invoke( + ["run", jobs_path_from_caller_directory("simple-job")] + ) + # job that doesn't explicitly use secrets should fail due to secrets overrides in core + cli_assert_equal(1, result) result: Result = runner.invoke( ["run", jobs_path_from_caller_directory("secrets-job")]