[clangd] Fix broken windows build bots.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@353694 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/unittests/clangd/FileIndexTests.cpp b/unittests/clangd/FileIndexTests.cpp
index fc374bb..5667cb8 100644
--- a/unittests/clangd/FileIndexTests.cpp
+++ b/unittests/clangd/FileIndexTests.cpp
@@ -218,7 +218,7 @@
     class Foo {};
   )cpp";
   auto MainFile = testPath("foo.cpp");
-  auto HeaderFile = testPath("bits/alloc_traits.h");
+  auto HeaderFile = testPath("algorithm");
   std::vector<const char *> Cmd = {"clang", "-xc++", MainFile.c_str(),
                                    "-include", HeaderFile.c_str()};
   // Preparse ParseInputs.
@@ -242,7 +242,7 @@
   auto Symbols = runFuzzyFind(Index, "");
   EXPECT_THAT(Symbols, ElementsAre(_));
   EXPECT_THAT(Symbols.begin()->IncludeHeaders.front().IncludeHeader,
-              "<memory>");
+              "<algorithm>");
 }
 
 TEST(FileIndexTest, TemplateParamsInLabel) {