one tiny cargo test workspace fix

This commit is contained in:
lda
2026-04-18 02:03:30 +07:00 Verified
parent b4152e84c4
commit 6b5405f066
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,3 +2,4 @@ We work towards clean, modular, maintainable design, clear documentation... im n
DRY: spawn subagents. DRY: spawn subagents.
Context: break those files out. Context: break those files out.
Test: make functions easy to test.
+1 -1
View File
@@ -146,7 +146,7 @@ mod tests {
assert_eq!(link.operstate, Some(OperState::Up)); assert_eq!(link.operstate, Some(OperState::Up));
assert_eq!( assert_eq!(
link.address.map(|mac| mac.to_string()).as_deref(), link.address.map(|mac| mac.to_string().to_ascii_lowercase()).as_deref(),
Some("aa:bb:cc:dd:ee:ff") Some("aa:bb:cc:dd:ee:ff")
); );
} }