From e4fbab08d11986bf873f77c1b3415cbde438c908 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Mon, 15 Apr 2024 11:36:19 +1000 Subject: [PATCH] test(webgpu): correct `describeTextureFormat()` test name (#4584) --- webgpu/describe_texture_format_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webgpu/describe_texture_format_test.ts b/webgpu/describe_texture_format_test.ts index 9f18354bffa7..8ac5b2ce3a55 100644 --- a/webgpu/describe_texture_format_test.ts +++ b/webgpu/describe_texture_format_test.ts @@ -100,7 +100,7 @@ const FORMATS: GPUTextureFormat[] = [ "astc-12x12-unorm-srgb", ] as const; -Deno.test("descripbeTextureFormat()", async (t) => { +Deno.test("describeTextureFormat()", async (t) => { for (const format of FORMATS) { await t.step(format, () => { describeTextureFormat(format);