1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-24 22:13:15 +00:00

Fix defect

This commit is contained in:
Carles Fernandez 2017-07-12 21:01:46 +02:00
parent f3d0435c37
commit 367d65a536

View File

@ -274,8 +274,8 @@ TEST_F(DataTypeAdapter, ByteToShortValidationOfResults)
std::cerr << e.code().message() << std::endl;
}
ifs.close();
remove(file_name_input.c_str());
remove(file_name_output.c_str());
ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file";
ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file";
}