diff --git a/vmm/src/config.rs b/vmm/src/config.rs index 81de491eb..1cc8f4225 100644 --- a/vmm/src/config.rs +++ b/vmm/src/config.rs @@ -2868,20 +2868,6 @@ mod tests { ..Default::default() } ); - assert_eq!( - DiskConfig::parse("path=/path/to_file")?, - DiskConfig { - path: Some(PathBuf::from("/path/to_file")), - ..Default::default() - } - ); - assert_eq!( - DiskConfig::parse("path=/path/to_file")?, - DiskConfig { - path: Some(PathBuf::from("/path/to_file")), - ..Default::default() - } - ); assert_eq!( DiskConfig::parse("path=/path/to_file,serial=test")?, DiskConfig { @@ -3016,14 +3002,6 @@ mod tests { ..Default::default() } ); - assert_eq!( - FsConfig::parse("tag=mytag,socket=/tmp/sock")?, - FsConfig { - socket: PathBuf::from("/tmp/sock"), - tag: "mytag".to_owned(), - ..Default::default() - } - ); assert_eq!( FsConfig::parse("tag=mytag,socket=/tmp/sock,num_queues=4,queue_size=1024")?, FsConfig {