You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let value1:Value = serde_json::from_str(json_str1).unwrap();
199
+
let value2:Value = serde_json::from_str(json_str2).unwrap();
200
+
201
+
value1 == value2
202
+
}
203
+
197
204
#[test]
198
205
fntest_block_device_add_qmp_commands(){
199
206
let virtio_blk_device = VirtioBlockDevice::new(
@@ -212,13 +219,11 @@ mod tests {
212
219
);
213
220
214
221
let expected_params_str = r#"{"driver":"raw","read-only":false,"node-name":"drive-0","cache":{"direct":true},"file":{"driver":"file","filename":"/dev/dm-8"}}"#;
0 commit comments