From 32083568bca5204c5cd6baa32c2e0797ef148200 Mon Sep 17 00:00:00 2001 From: petermcneeleychromium <96925679+petermcneeleychromium@users.noreply.github.com> Date: Wed, 11 Sep 2024 13:33:28 -0400 Subject: [PATCH] Minor initial fix for missing comma (#3943) Co-authored-by: Peter McNeeley --- src/webgpu/shader/validation/expression/matrix/mul.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webgpu/shader/validation/expression/matrix/mul.spec.ts b/src/webgpu/shader/validation/expression/matrix/mul.spec.ts index e76e40265e09..a3a5d368dc2d 100644 --- a/src/webgpu/shader/validation/expression/matrix/mul.spec.ts +++ b/src/webgpu/shader/validation/expression/matrix/mul.spec.ts @@ -631,7 +631,7 @@ g.test('overflow_mat_f16_internal') for (let i = 0; i < t.params.c; i++) { for (let k = 0; k < t.params.r; k++) { lhs += `${t.params.lhs},`; - rhs += `1`; + rhs += `1,`; } } rhs += ')';