Skip to content

Commit 1ae5350

Browse files
change
1 parent 7952854 commit 1ae5350

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

crates/djls-conf/src/lib.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,7 @@ mod tests {
127127
#[test]
128128
fn test_load_venv_path_config() {
129129
let dir = tempdir().unwrap();
130-
fs::write(
131-
dir.path().join("djls.toml"),
132-
r#"
133-
debug = false
134-
venv_path = "/path/to/venv"
135-
"#,
136-
)
137-
.unwrap();
130+
fs::write(dir.path().join("djls.toml"), "venv_path = /path/to/venv").unwrap();
138131
let settings = Settings::new(dir.path()).unwrap();
139132
assert_eq!(
140133
settings,

0 commit comments

Comments
 (0)