fix core::config::tests::override_toml

Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
onur-ozkan 2024-11-08 20:25:54 +03:00
parent 2e0afc8b71
commit 2a381086bb

View File

@ -135,6 +135,7 @@ fn override_toml() {
[rust] [rust]
lto = "off" lto = "off"
deny-warnings = true deny-warnings = true
download-rustc=false
[build] [build]
gdb = "foo" gdb = "foo"
@ -200,6 +201,8 @@ fn override_toml() {
.collect(), .collect(),
"setting dictionary value" "setting dictionary value"
); );
assert!(!config.llvm_from_ci);
assert!(!config.download_rustc());
} }
#[test] #[test]