From 7e30bb877f96bec43cc3d7da036395f65ddbb552 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Singh Date: Wed, 7 Jun 2023 18:32:53 +0000 Subject: [PATCH] Add success tests Signed-off-by: Shivam Kumar Singh --- tests/e2e/standalone/stop_with_run_template_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/standalone/stop_with_run_template_test.go b/tests/e2e/standalone/stop_with_run_template_test.go index 920d916d5..5a788077f 100644 --- a/tests/e2e/standalone/stop_with_run_template_test.go +++ b/tests/e2e/standalone/stop_with_run_template_test.go @@ -130,4 +130,6 @@ func assertTemplateListOutput(t *testing.T, name string) { assert.Len(t, result, 2, "expected two apps to be running") assert.Equal(t, name, result[0]["runTemplateName"], "expected run template name to be %s", name) + assert.Equal(t, name, result[0]["appLogPath"], "expected run template name to be %s", name) + assert.Equal(t, name, result[0]["daprdLogPath"], "expected run template name to be %s", name) }