From ca6f799ee555a88575e3f38ac3cf90c936626124 Mon Sep 17 00:00:00 2001 From: Kim Shepherd Date: Tue, 7 Feb 2023 14:59:56 +1300 Subject: [PATCH] [TLC-380] Lint fixes on spec test --- .../metadata-representation-list-element.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/shared/object-list/metadata-representation-list-element/metadata-representation-list-element.component.spec.ts b/src/app/shared/object-list/metadata-representation-list-element/metadata-representation-list-element.component.spec.ts index 8e9b1ca37f..f0cc150b3e 100644 --- a/src/app/shared/object-list/metadata-representation-list-element/metadata-representation-list-element.component.spec.ts +++ b/src/app/shared/object-list/metadata-representation-list-element/metadata-representation-list-element.component.spec.ts @@ -43,7 +43,7 @@ describe('MetadataRepresentationListElementComponent', () => { expect(comp.isLink()).toBe(false); }); }); - }) + }); describe('when the value is a URL', () => { beforeEach(() => { @@ -54,6 +54,6 @@ describe('MetadataRepresentationListElementComponent', () => { expect(comp.isLink()).toBe(true); }); }); - }) + }); });