| Index: tests/SkSLErrorTest.cpp | 
| diff --git a/tests/SkSLErrorTest.cpp b/tests/SkSLErrorTest.cpp | 
| index 400ab6dc57d343e16619eb0127b33581c21efc68..75fa20d7e3ed0b75057b6f81d8b11d443fef6304 100644 | 
| --- a/tests/SkSLErrorTest.cpp | 
| +++ b/tests/SkSLErrorTest.cpp | 
| @@ -263,8 +263,8 @@ | 
| "void main() { int x = 2[0]; }", | 
| "error: 1: expected array, but found 'int'\n1 error\n"); | 
| test_failure(r, | 
| -                 "void main() { vec2 x = vec2(0); int y = x[0][0]; }", | 
| -                 "error: 1: expected array, but found 'float'\n1 error\n"); | 
| +                 "void main() { vec2 x = vec2(0); int y = x[0]; }", | 
| +                 "error: 1: expected array, but found 'vec2'\n1 error\n"); | 
| } | 
|  | 
| DEF_TEST(SkSLTernaryMismatch, r) { | 
|  |