[TLC-380] Lint fixes

This commit is contained in:
Kim Shepherd
2023-02-06 14:23:33 +13:00
parent 63af2e079c
commit 5aab1af5f7
3 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ describe('MetadataValuesComponent', () => {
});
it('should correctly detect a pattern on string containing "test"', () => {
const mdValue = {value: "This is a test value"} as MetadataValue;
const mdValue = {value: 'This is a test value'} as MetadataValue;
expect(comp.hasLink(mdValue)).toBe(true);
});