Skip to content

Commit eeb04b9

Browse files
committed
cred/tests: Account for changes in git_config
1 parent 26853d9 commit eeb04b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cred.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ mod test {
482482
macro_rules! test_cfg( ($($k:expr => $v:expr),*) => ({
483483
let td = TempDir::new().unwrap();
484484
let mut cfg = Config::new().unwrap();
485-
cfg.add_file(&td.path().join("cfg"), ConfigLevel::Highest, false).unwrap();
485+
cfg.add_file(&td.path().join("cfg"), ConfigLevel::App, false).unwrap();
486486
$(cfg.set_str($k, $v).unwrap();)*
487487
cfg
488488
}) );

0 commit comments

Comments
 (0)