Skip to content

Commit

Permalink
fix(host_metrics): use assert!() insead of assert_eq!()
Browse files Browse the repository at this point in the history
  • Loading branch information
aryan9600 committed Dec 23, 2024
1 parent 3b2563a commit 0bcdd70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sources/host_metrics/netlink_tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ mod tests {
dst = true;
}
}
assert_eq!(source, true);
assert_eq!(dst, true);
assert!(source);
assert!(dst);
}
}

0 comments on commit 0bcdd70

Please sign in to comment.