diff --git a/tests/connected-component/to-geometry.spec.ts b/tests/connected-component/to-geometry.spec.ts index 81fbbab1..1250ff6c 100644 --- a/tests/connected-component/to-geometry.spec.ts +++ b/tests/connected-component/to-geometry.spec.ts @@ -6,7 +6,7 @@ import { TestImages } from '@test/test-images'; describe('ConnectedComponent#toGeometry', () => { it('converts the component to a geometry', () => { - TestImages.connectedComponents.use((image) => { + TestImages.connectedComponentsPng.use((image) => { image.clone((clone) => { clone.blur(0, 10); clone.threshold(new Percentage(50)); diff --git a/tests/magick-image/connected-components.spec.ts b/tests/magick-image/connected-components.spec.ts index 7445371d..d34cede0 100644 --- a/tests/magick-image/connected-components.spec.ts +++ b/tests/magick-image/connected-components.spec.ts @@ -12,7 +12,7 @@ type ComponentTestData = Required>; describe('MagickImage#connectedComponents', () => { test('should return the connected components', () => { - TestImages.connectedComponents.use((image) => { + TestImages.connectedComponentsPng.use((image) => { image.clone((clone) => { clone.blur(0, 10); clone.threshold(new Percentage(50)); diff --git a/tests/test-images.ts b/tests/test-images.ts index f89367c6..6ca12946 100644 --- a/tests/test-images.ts +++ b/tests/test-images.ts @@ -114,7 +114,7 @@ export class TestImages { static readonly emptyCollection = new EmptyTestImageCollection(); static readonly empty150x150Canvas = new TestImageFromColor(MagickColors.White, 150, 150); static readonly cmykJpg = new TestImage('tests/images/cmyk.jpg'); - static readonly connectedComponents = new TestImage('tests/images/connected-components.png'); + static readonly connectedComponentsPng = new TestImage('tests/images/connected-components.png'); static readonly fujiFilmFinePixS1ProJpg = new TestImage('tests/images/fuji-film-fine-pix-s1-pro.jpg'); static readonly imageMagickJpg = new TestImage('tests/images/image-magick.jpg'); static readonly redPng = new TestImage('tests/images/red.png');