aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/util/ini_helper_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/util/ini_helper_test.rs')
-rw-r--r--crates/shirabe/tests/util/ini_helper_test.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/shirabe/tests/util/ini_helper_test.rs b/crates/shirabe/tests/util/ini_helper_test.rs
index 54ab250..e214a78 100644
--- a/crates/shirabe/tests/util/ini_helper_test.rs
+++ b/crates/shirabe/tests/util/ini_helper_test.rs
@@ -4,7 +4,10 @@ use shirabe::util::ini_helper::IniHelper;
use shirabe_php_shim::{PATH_SEPARATOR, putenv};
fn set_env(paths: &[&str]) {
- putenv(&format!("COMPOSER_ORIGINAL_INIS={}", paths.join(PATH_SEPARATOR)));
+ putenv(&format!(
+ "COMPOSER_ORIGINAL_INIS={}",
+ paths.join(PATH_SEPARATOR)
+ ));
}
#[test]