Searched refs:patch_body (Results 1 – 1 of 1) sorted by relevance
316 let mut patch_body = ProtoChip::new(); in test_chip_patch() localVariable317 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()