Skip to content

Commit

Permalink
Fix mustache render url test (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyBrobston authored Oct 29, 2020
1 parent c4f76a1 commit d4cb4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/helpers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe("helpers", () => {
test("Verify can load settings.json with secrets that are urls", () => {
const secrets = { someSecret: "http://127.0.0.1:5000/" };
writeFileSync(secretsFilePath, JSON.stringify(secrets));
const settings = { foo: "{{someSecret}}" };
const settings = { foo: "{{{someSecret}}}" };
writeFileSync(settingsFilePath, JSON.stringify(settings));

const actualSettings = helpers.readSettings(serviceName, settingsFilePath, secretsFilePath);
Expand Down

0 comments on commit d4cb4ee

Please sign in to comment.