From f33dfd78e6f99c9b6ed13bf0ec93b269e9458926 Mon Sep 17 00:00:00 2001 From: ocavue Date: Thu, 13 Nov 2025 18:32:56 +1100 Subject: [PATCH] Fix typo in test description for Mat tests --- test/Mat.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Mat.test.ts b/test/Mat.test.ts index 6b1453d..48e2451 100644 --- a/test/Mat.test.ts +++ b/test/Mat.test.ts @@ -5,7 +5,7 @@ import { setupOpenCv, translateException } from "./cv"; beforeAll(setupOpenCv); describe("Mat", () => { - it("shoud pass TS type validations", async () => { + it("should pass TS type validations", async () => { try { // load local image file with jimp. It supports jpg, png, bmp, tiff and gif: const jimpSrc = await Jimp.read(path.resolve(__dirname, "Lenna.png"));