summaryrefslogtreecommitdiffstats
path: root/src/build_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/build_test.cc')
-rw-r--r--src/build_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_test.cc b/src/build_test.cc
index cf75e04..f7e4a5c 100644
--- a/src/build_test.cc
+++ b/src/build_test.cc
@@ -486,7 +486,7 @@ TEST_F(BuildTest, DepFileParseError) {
fs_.Create("foo.c", now_, "");
fs_.Create("foo.o.d", now_, "foo.o blah.h bar.h\n");
EXPECT_FALSE(builder_.AddTarget("foo.o", &err));
- EXPECT_EQ("foo.o.d: line 1, col 7: expected ':', got 'blah.h'", err);
+ EXPECT_EQ("expected depfile 'foo.o.d' to mention 'foo.o', got ''", err);
}
TEST_F(BuildTest, OrderOnlyDeps) {