diff --git a/projects/storefrontlib/shared/components/media/media.service.spec.ts b/projects/storefrontlib/shared/components/media/media.service.spec.ts index 0959a1a9183..ebed037d5bf 100644 --- a/projects/storefrontlib/shared/components/media/media.service.spec.ts +++ b/projects/storefrontlib/shared/components/media/media.service.spec.ts @@ -687,7 +687,7 @@ describe('MediaService', () => { mockContainerWithWidthAndHeight ); - // Width & Height of best format image + // Width & Height of the best format image expect(result?.width).toBe(600); expect(result?.height).toBe(400); @@ -700,7 +700,7 @@ describe('MediaService', () => { const result = service.getMedia(mockContainerWithWidthAndHeight); - // Width & Height of best format image + // Width & Height of the best format image expect(result?.width).toBe(600); expect(result?.height).toBe(400); });