refactor: Variable typo

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-04-29 13:58:49 -04:00
parent 23e45c47d0
commit 87a0b37aa7
@@ -506,7 +506,7 @@ describe('AzureBlobStoragePublish', () => {
name: 'path',
};
const techDocsMetadaFilePath = path.posix.join(
const techDocsMetadataFilePath = path.posix.join(
...Object.values(invalidEntityName),
'techdocs_metadata.json',
);
@@ -514,7 +514,7 @@ describe('AzureBlobStoragePublish', () => {
const fails = publisher.fetchTechDocsMetadata(invalidEntityName);
await expect(fails).rejects.toMatchObject({
message: `TechDocs metadata fetch failed; caused by Error: The file ${techDocsMetadaFilePath} does not exist!`,
message: `TechDocs metadata fetch failed; caused by Error: The file ${techDocsMetadataFilePath} does not exist!`,
});
});
});