From 732f41afe032dfe4bf226c7d9eed0d21941f8017 Mon Sep 17 00:00:00 2001 From: omerlh Date: Mon, 29 Jul 2019 14:38:55 +0300 Subject: [PATCH] fix the tests --- tests/crd-controller/FlowTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/crd-controller/FlowTest.cs b/tests/crd-controller/FlowTest.cs index 852a2a9bf..f5948f01b 100644 --- a/tests/crd-controller/FlowTest.cs +++ b/tests/crd-controller/FlowTest.cs @@ -109,7 +109,7 @@ public async Task UpdateKamusSecret_SecretUpdated(string fileName) onError: e => subject.OnError(e), onClosed: () => subject.OnCompleted()); - RunKubectlCommand($"apply -f ${fileName}"); + RunKubectlCommand($"apply -f {fileName}"); mTestOutputHelper.WriteLine("Waiting for secret update"); @@ -132,7 +132,7 @@ public async Task DeleteKamusSecret_SecretDeleted(string fileName) await DeployController(); RunKubectlCommand("apply -f tls-Secret.yaml"); - RunKubectlCommand($"apply -f ${fileName}"); + RunKubectlCommand($"apply -f {fileName}"); var kubernetes = new Kubernetes(KubernetesClientConfiguration.BuildDefaultConfig()); @@ -148,7 +148,7 @@ public async Task DeleteKamusSecret_SecretDeleted(string fileName) onError: e => subject.OnError(e), onClosed: () => subject.OnCompleted()); - RunKubectlCommand($"delete -f ${fileName}"); + RunKubectlCommand($"delete -f {fileName}"); mTestOutputHelper.WriteLine("Waiting for secret deletion");