fix unit test
authorEvan Martin <martine@danga.com>
Mon, 2 May 2011 19:18:35 +0000 (12:18 -0700)
committerEvan Martin <martine@danga.com>
Mon, 2 May 2011 19:18:35 +0000 (12:18 -0700)
src/ninja.h
src/ninja_test.cc

index 8927768..b73d7be 100644 (file)
@@ -52,7 +52,7 @@ struct DiskInterface {
   /// Remove the file named @a path. It behaves like 'rm -f path' so no errors
   /// are reported if it does not exists.
   /// @returns 0 if the file has been removed,
-  ///          1 if the file does not exists, and
+  ///          1 if the file does not exist, and
   ///          -1 if an error occurs.
   virtual int RemoveFile(const string& path) = 0;
 
index 8d53343..ed22709 100644 (file)
@@ -264,5 +264,5 @@ TEST_F(DiskInterfaceTest, RemoveFile) {
   ASSERT_EQ(0, system(cmd.c_str()));
   EXPECT_EQ(0, disk_.RemoveFile(kFileName));
   EXPECT_EQ(1, disk_.RemoveFile(kFileName));
-  EXPECT_EQ(-1, disk_.RemoveFile("does not exist"));
+  EXPECT_EQ(1, disk_.RemoveFile("does not exist"));
 }