Home
last modified time | relevance | path

Searched refs:patch_body (Results 1 – 1 of 1) sorted by relevance

/tools/netsim/rust/daemon/src/devices/
Dchip.rs316 let mut patch_body = ProtoChip::new(); in test_chip_patch() localVariable
317 patch_body.manufacturer = "patched_manufacturer".to_string(); in test_chip_patch()
318 patch_body.product_name = "patched_product_name".to_string(); in test_chip_patch()
321 assert!(chip.patch(&patch_body).is_ok()); in test_chip_patch()
324 assert_eq!(patch_body.manufacturer, chip.manufacturer.read().unwrap().to_string()); in test_chip_patch()
325 assert_eq!(patch_body.product_name, chip.product_name.read().unwrap().to_string()); in test_chip_patch()