diff --git a/sdk/tests/conformance/attribs/gl-vertexattribpointer.html b/sdk/tests/conformance/attribs/gl-vertexattribpointer.html index 52d4117329..1276cec7c9 100644 --- a/sdk/tests/conformance/attribs/gl-vertexattribpointer.html +++ b/sdk/tests/conformance/attribs/gl-vertexattribpointer.html @@ -152,7 +152,7 @@ gl, size < info.minSize ? gl.INVALID_OPERATION : gl.NO_ERROR, "at stride limit", size, info.type, false, stride, offset); checkVertexAttribPointer( - gl, size < info.minSize ? gl.INVALID_OPERATION : gl.INVALID_VALUE, "over stride limit", + gl, size < info.minSize ? [gl.INVALID_OPERATION, gl.INVALID_VALUE] : gl.INVALID_VALUE, "over stride limit", size, info.type, false, stride + info.bytesPerComponent, offset); }