updated build system

This commit is contained in:
2024-08-02 15:34:01 -05:00
parent fcd38db2ef
commit d518e55a67
3 changed files with 3 additions and 6 deletions

View File

@@ -44,11 +44,9 @@ TEST(encrypting_reader, get_encrypted_file_name) {
"test.dat", source_file_name, stop_requested, token, std::nullopt);
auto file_name = reader.get_encrypted_file_name();
std::cout << file_name << std::endl;
EXPECT_EQ(api_error::success,
utils::encryption::decrypt_file_name(token, file_name));
std::cout << file_name << std::endl;
EXPECT_STREQ("test.dat", file_name.c_str());
source_file->close();