Skip to content

Commit

Permalink
test(isolation): compare entire set instead of fields
Browse files Browse the repository at this point in the history
  • Loading branch information
n0toose committed Nov 8, 2024
1 parent b327406 commit f50841f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/isolation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ mod tests {
.map(UhyveFileMap::split_guest_and_host_path)
.enumerate()
{
assert_eq!(host_and_guest_string.0, results[i].0);
assert_eq!(host_and_guest_string.1, results[i].1);
assert_eq!(host_and_guest_string, results[i]);
}
}

Expand Down

0 comments on commit f50841f

Please sign in to comment.