Skip to content

Commit

Permalink
fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
omerlh committed Jul 29, 2019
1 parent 3e95c5b commit 732f41a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/crd-controller/FlowTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand All @@ -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());

Expand All @@ -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");

Expand Down

0 comments on commit 732f41a

Please sign in to comment.