Skip to content

Commit c62b162

Browse files
authored
Correct an error (gpuweb#4499)
1 parent e75b600 commit c62b162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgpu/api/validation/capability_checks/limits/limit_utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ export class LimitTestsImpl extends GPUTestBase {
12041204

12051205
this.skipIf(
12061206
numRequired > device.limits.maxStorageBuffersPerShaderStage,
1207-
`maxStorageBuffersPerShaderStage = ${device.limits.maxSamplersPerShaderStage} which is less than ${numRequired}`
1207+
`maxStorageBuffersPerShaderStage = ${device.limits.maxStorageBuffersPerShaderStage} which is less than ${numRequired}`
12081208
);
12091209

12101210
this.skipIf(

0 commit comments

Comments
 (0)