aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
authorGravatar Laurent Le Brun <laurentlb@google.com>2015-06-30 14:20:45 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-06-30 19:02:44 +0000
commitb13a438be1fbf7ff1b591f689805ad1035c126f6 (patch)
tree5d1040bf82270f99bfc309437a77289409ee1c2a /src/test
parent15d129a5d27679ba32f142d76b3faa828ea71395 (diff)
Update parser error message.
-- MOS_MIGRATED_REVID=97224936
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java b/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
index 3658679cf4..a71b12e665 100644
--- a/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
+++ b/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
@@ -951,7 +951,7 @@ public class ParserTest extends EvaluationTestCase {
" x = 2",
"x = 3;\n");
assertThat(stmts).hasSize(2);
- assertContainsEvent("This Python-style construct is not supported");
+ assertContainsEvent("This is not supported in BUILD files");
}
@Test