ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
cd41b0c3 abfb2298

+8 -5
+8 -5
wire/lib/src/hive/mod.rs
··· 294 294 assert!(node.build_remotely); 295 295 } 296 296 297 - assert_matches!( 298 - hive.force_always_local(vec!["node-a".to_string()]), 299 - Ok(()) 297 + assert_matches!(hive.force_always_local(vec!["node-a".to_string()]), Ok(())); 298 + 299 + assert!( 300 + !hive 301 + .nodes 302 + .get(&Name("node-a".into())) 303 + .unwrap() 304 + .build_remotely 300 305 ); 301 - 302 - assert!(!hive.nodes.get(&Name("node-a".into())).unwrap().build_remotely); 303 306 } 304 307 }