Fix testId and match it to the test name.

PiperOrigin-RevId: 474363545
This commit is contained in:
leonwind 2022-09-14 19:41:11 +00:00 committed by Marc Baechinger
parent 314b312af1
commit ab6562e052

View File

@ -391,7 +391,7 @@ public final class GlEffectsFrameProcessorPixelTest {
// TODO(b/239757183): Consider moving RgbMatrix composition tests to a new file.
public void drawFrame_grayscaleAndIncreaseRedChannel_producesGrayscaleAndRedImage()
throws Exception {
String testId = "drawFrame_grayscale";
String testId = "drawFrame_grayscaleAndIncreaseRedChannel";
ImmutableList<Effect> grayscaleThenIncreaseRed =
ImmutableList.of(
RgbFilter.createGrayscaleFilter(), new RgbAdjustment.Builder().setRedScale(3).build());