Skip to content

Commit

Permalink
test: update schema for AAD Manifest (OfficeDev#13057)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellyzh authored Jan 15, 2025
1 parent 95a21dd commit d1f3bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tests/src/utils/commonUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ export async function updateAadTemplate(
) {
const filePath = path.resolve(projectPath, "aad.manifest.json");
const context = await fs.readJSON(filePath);
const updatedAppName = context["name"] + displayNameSuffix;
context["name"] = updatedAppName;
const updatedAppName = context["displayName"] + displayNameSuffix;
context["displayName"] = updatedAppName;
return fs.writeJSON(filePath, context, { spaces: 4 });
}

Expand Down

0 comments on commit d1f3bda

Please sign in to comment.