diff --git a/src/tests/end2end/PushConstantTests.cpp b/src/tests/end2end/PushConstantTests.cpp index e385a17c1e..0bd371c366 100644 --- a/src/tests/end2end/PushConstantTests.cpp +++ b/src/tests/end2end/PushConstantTests.cpp @@ -195,13 +195,6 @@ class PushConstantTest: public DawnTest { descriptor.cFragmentStage.module = fsModule; descriptor.primitiveTopology = dawn::PrimitiveTopology::PointList; - dawn::BlendDescriptor blend; - blend.operation = dawn::BlendOperation::Add; - blend.srcFactor = dawn::BlendFactor::One; - blend.dstFactor = dawn::BlendFactor::One; - descriptor.cColorStates[0]->alphaBlend = blend; - descriptor.cColorStates[0]->colorBlend = blend; - return device.CreateRenderPipeline(&descriptor); } };