From 44f1f599ab4b53b09bbe47bf2c13dc2ba7b6aca4 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Fri, 2 Aug 2024 20:07:29 -0700 Subject: [PATCH] Fix merge/lint --- tests/repl/test_config_path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/repl/test_config_path.rs b/tests/repl/test_config_path.rs index 491ecb370e..6bee043765 100644 --- a/tests/repl/test_config_path.rs +++ b/tests/repl/test_config_path.rs @@ -141,7 +141,7 @@ fn test_config_path_helper( fn test_default_config_path() { Playground::setup("default_config_path", |_, playground| { let config_dir = nu_path::config_dir().expect("Could not get config directory"); - test_config_path_helper(playground, config_dir.join("nushell").into()); + test_config_path_helper(playground, config_dir.join("nushell")); }); }