test: fixed crud test

This commit is contained in:
Alexey 2025-11-29 14:46:42 +03:00
commit 96235086d7

View file

@ -21,9 +21,9 @@ fn quest_crud() -> Result<(), QuestError> {
let filename = format!("{}.toml", quest.id);
let delete_path = quests_path.with_file_name(filename);
quests_path.push(filename);
Quest::delete(delete_path)?;
Quest::delete(quests_path)?;
Ok(())
}