[clangd] Remove debugging output in test

llvm-svn: 343845
This commit is contained in:
Sam McCall 2018-10-05 12:22:40 +00:00
parent b2d530e035
commit 75dd87bed1
1 changed files with 0 additions and 5 deletions

View File

@ -157,11 +157,6 @@ TEST(SerializationTest, BinaryConversions) {
IndexFileOut Out(*In);
Out.Format = IndexFileFormat::RIFF;
std::string Serialized = llvm::to_string(Out);
{
std::error_code EC;
llvm::raw_fd_ostream F("/tmp/foo", EC);
F << Serialized;
}
auto In2 = readIndexFile(Serialized);
ASSERT_TRUE(bool(In2)) << In.takeError();