| Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
|
| index c9d8ba16aac63872b2cbbddbaca175c2101571ea..7ec620aff0096d86e72aa19957d27614e1892266 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
|
| @@ -3477,10 +3477,6 @@ TEST_P(GLES3DecoderTest, TexStorage3DValidArgs) {
|
| EXPECT_CALL(*gl_, TexStorage3D(GL_TEXTURE_3D, 2, GL_RGB565, 4, 5, 6))
|
| .Times(1)
|
| .RetiresOnSaturation();
|
| - EXPECT_CALL(*gl_, GetError())
|
| - .WillOnce(Return(GL_NO_ERROR))
|
| - .WillOnce(Return(GL_NO_ERROR))
|
| - .RetiresOnSaturation();
|
| cmds::TexStorage3D cmd;
|
| cmd.Init(GL_TEXTURE_3D, 2, GL_RGB565, 4, 5, 6);
|
| EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
|
|
|