1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-10 23:06:03 +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; std::cerr << e.code().message() << std::endl;
} }
ifs.close(); ifs.close();
remove(file_name_input.c_str()); ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file";
remove(file_name_output.c_str()); ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file";
} }