From 1ff9b758d2c677533b0ca3aa340ff4c1d99c48c4 Mon Sep 17 00:00:00 2001 From: MohammadHasan Akbari Date: Tue, 26 Nov 2024 22:00:47 +0330 Subject: [PATCH] fix: commit tests Signed-off-by: MohammadHasan Akbari --- pkg/e2e/commit_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkg/e2e/commit_test.go b/pkg/e2e/commit_test.go index e3a7afa1e..0daf13054 100644 --- a/pkg/e2e/commit_test.go +++ b/pkg/e2e/commit_test.go @@ -38,11 +38,11 @@ func TestCommit(t *testing.T) { projectName, "commit", "-a", - "\"John Hannibal Smith \"", + "John Hannibal Smith ", "-c", - "\"ENV DEBUG=true\"", + "ENV DEBUG=true", "-m", - "\"sample commit\"", + "sample commit", "service", "service:latest", ) @@ -66,11 +66,11 @@ func TestCommitWithReplicas(t *testing.T) { projectName, "commit", "-a", - "\"John Hannibal Smith \"", + "John Hannibal Smith ", "-c", - "\"ENV DEBUG=true\"", + "ENV DEBUG=true", "-m", - "\"sample commit\"", + "sample commit", "--index=1", "service-with-replicas", "service-with-replicas:1", @@ -81,11 +81,11 @@ func TestCommitWithReplicas(t *testing.T) { projectName, "commit", "-a", - "\"John Hannibal Smith \"", + "John Hannibal Smith ", "-c", - "\"ENV DEBUG=true\"", + "ENV DEBUG=true", "-m", - "\"sample commit\"", + "sample commit", "--index=2", "service-with-replicas", "service-with-replicas:2",