()
| 304 | |
| 305 | #[test] |
| 306 | fn unknown_array_is_ignored() { |
| 307 | let (server, delivery, _) = make_server(); |
| 308 | let _ = delivery.register("s1".into()); |
| 309 | let req = ArrayCatchupRequestMsg { |
| 310 | array: "nonexistent".into(), |
| 311 | from_hlc_bytes: Hlc::ZERO.to_bytes(), |
| 312 | }; |
| 313 | // Should not error — just log and return Ok. |
| 314 | server.serve(&req, "s1").unwrap(); |
| 315 | } |
| 316 | } |
nothing calls this directly
no test coverage detected