Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
Signed-off-by: Dmytro Nochevnov <[email protected]>
  • Loading branch information
dmytro-ndp committed Feb 26, 2025
1 parent 45ad9a5 commit 913315c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/utils/DevfilesHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class DevfilesHelper {
public obtainDevFileContentUsingPod(podName: string, containerName: string, devFileName: string): string {
const clusterURL: string = this.getInternalClusterURLToDevFile(devFileName);
this.getShellExecutor().executeCommand(
`oc exec -i ${podName} -n ${BASE_TEST_CONSTANTS.TS_PLATFORM}-${BASE_TEST_CONSTANTS.TESTING_APPLICATION_NAME()} -c ${containerName} -- sh -c 'curl -k -o /tmp/${devFileName}-devfile.yaml ${clusterURL}'`
`oc exec -i ${podName} -n ${BASE_TEST_CONSTANTS.TS_PLATFORM}-${BASE_TEST_CONSTANTS.TESTING_APPLICATION_NAME()} -c ${containerName} -- sh -c 'curl -o /tmp/${devFileName}-devfile.yaml ${clusterURL}'`
);
return this.getShellExecutor()
.executeArbitraryShellScript(
Expand Down

0 comments on commit 913315c

Please sign in to comment.