agent: Fix unused import warning in unit tests

This unneeded import was accidentally introduced by 81607e34.

fixes #1507

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2021-03-12 17:23:37 +11:00
parent 62d30ca2b6
commit b0e966c3bd

View File

@ -87,7 +87,7 @@ pub fn home_dir(uid: uid_t) -> Result<String> {
#[cfg(test)]
mod tests {
use super::*;
use std::io::{self, Write};
use std::io::Write;
use tempfile::Builder;
#[test]