Skip to content

Commit 25d49bf

Browse files
fix the string!
1 parent ad54d6e commit 25d49bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/djls-conf/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ mod tests {
127127
#[test]
128128
fn test_load_venv_path_config() {
129129
let dir = tempdir().unwrap();
130-
fs::write(dir.path().join("djls.toml"), "venv_path = /path/to/venv").unwrap();
130+
fs::write(dir.path().join("djls.toml"), "venv_path = '/path/to/venv'").unwrap();
131131
let settings = Settings::new(dir.path()).unwrap();
132132
assert_eq!(
133133
settings,

0 commit comments

Comments
 (0)