Skip to content

Commit

Permalink
Fix acceptance test status file (#235)
Browse files Browse the repository at this point in the history
* Fixed status file name for acceptance test

* FIxed contentType for Test Status File
  • Loading branch information
tkmcmaster authored Jul 9, 2024
1 parent afbb5d9 commit ef48c3f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions common/src/s3file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export class PpaasS3File implements S3File {
this.contentType = "text/x-yaml";
break;
case ".json":
case ".info":
this.contentType = "application/json";
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion controller/integration/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ACCEPTANCE_FOLDER = "integration/files";
const ACCEPTANCE_FILES: AcceptanceFiles = {
ppaasTestId: FILES_PPAAS_TESTID,
yamlFile,
statusFile: "rmsdeletestage20240617T193912876.json",
statusFile: "rmsdeletestage20240617T193912876.info",
resultsFile: "stats-rmsdeletestage20240617T193912876.json",
stdoutFile: "app-ppaas-pewpew-rmsdeletestage20240617T193912876-out.json",
stderrFile: "app-ppaas-pewpew-rmsdeletestage20240617T193912876-error.json"
Expand Down

0 comments on commit ef48c3f

Please sign in to comment.