fix: reset env after test run

This commit is contained in:
EETagent 2022-11-17 12:50:19 +01:00
parent f6a28aa226
commit aa1df5c74e

View file

@ -482,6 +482,8 @@ mod tests {
#[cfg(test)]
async fn clear_data_store_temp_dir(temp_dir: PathBuf) {
tokio::fs::remove_dir_all(temp_dir).await.unwrap();
std::env::remove_var("STORE_PATH");
}
#[tokio::test]