mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-19 19:17:01 -07:00
Fix fmt 10 breaking logging and changed printing format
This commit is contained in:
parent
5bdc605f0b
commit
431be7914c
10 changed files with 114 additions and 130 deletions
|
|
@ -80,8 +80,8 @@ TEST_CASE("Test configuration functions"){
|
|||
|
||||
std::string json = config::to_json(config);
|
||||
error error_save = config::save(config.path, config);
|
||||
CHECK(error_save.get_code() == 0);
|
||||
CHECK((int)error_save.get_code() == 0);
|
||||
|
||||
error error_load = config::load(config.path, config);
|
||||
CHECK(error_load.get_code() == 0);
|
||||
CHECK((int)error_load.get_code() == 0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue