updated build system
This commit is contained in:
@ -706,7 +706,6 @@ void app_config::save() {
|
||||
}
|
||||
config_changed_ = false;
|
||||
json data = get_json();
|
||||
std::cout << "saving: " << data.dump() << std::endl;
|
||||
auto success = false;
|
||||
for (auto i = 0U; not success && (i < retry_save_count); i++) {
|
||||
success = utils::file::write_json_file(file_path, data);
|
||||
|
@ -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();
|
||||
|
Reference in New Issue
Block a user