Skip to content

Commit

Permalink
fix temporal path
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeAlonso committed Jul 23, 2024
1 parent 766cabf commit d06be9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('An admin user can import and run a pipeline', { testIsolation: false }
cy.fixture('resources/yaml/data_connection.yml').then((yamlContent) => {
const modifiedYamlContent = replacePlaceholdersInYaml(yamlContent, replacements);
const tempFilePath = 'cypress/temp_data_connection.yaml';
applyOpenShiftYaml(modifiedYamlContent).then((result) => {
applyOpenShiftYaml(modifiedYamlContent, tempFilePath).then((result) => {
expect(result.code).to.eq(0, `ERROR applying YAML content\nstdout: ${result.stdout}\nstderr: ${result.stderr}`);
});
});
Expand Down

0 comments on commit d06be9c

Please sign in to comment.