summaryrefslogtreecommitdiff
path: root/cli/tests/unit/webgpu_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/webgpu_test.ts')
-rw-r--r--cli/tests/unit/webgpu_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/unit/webgpu_test.ts b/cli/tests/unit/webgpu_test.ts
index fa71ffcc8..c903736f8 100644
--- a/cli/tests/unit/webgpu_test.ts
+++ b/cli/tests/unit/webgpu_test.ts
@@ -27,7 +27,7 @@ Deno.test({
assert(device);
const shaderCode = await Deno.readTextFile(
- "cli/tests/testdata/webgpu_computepass_shader.wgsl",
+ "cli/tests/testdata/webgpu/computepass_shader.wgsl",
);
const shaderModule = device.createShaderModule({
@@ -116,7 +116,7 @@ Deno.test({
assert(device);
const shaderCode = await Deno.readTextFile(
- "cli/tests/testdata/webgpu_hellotriangle_shader.wgsl",
+ "cli/tests/testdata/webgpu/hellotriangle_shader.wgsl",
);
const shaderModule = device.createShaderModule({
@@ -202,7 +202,7 @@ Deno.test({
assertEquals(
data,
- await Deno.readFile("cli/tests/testdata/webgpu_hellotriangle.out"),
+ await Deno.readFile("cli/tests/testdata/webgpu/hellotriangle.out"),
);
outputBuffer.unmap();