From a2922b991f339c0800bc3a4204d823209cdc8a7b Mon Sep 17 00:00:00 2001 From: MattJackson <1085847+MattJackson@users.noreply.github.com> Date: Wed, 15 Apr 2026 04:54:19 +0000 Subject: [PATCH] Fix test for network open_input error message change --- tests/streams.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/streams.rs b/tests/streams.rs index ba03202..0c397e0 100644 --- a/tests/streams.rs +++ b/tests/streams.rs @@ -176,7 +176,7 @@ fn open_input_network_no_port_errors() { Err(e) => e.to_string(), Ok(_) => panic!("expected error"), }; - assert!(msg.contains("missing port"), "got: {}", msg); + assert!(msg.contains("PES pipeline") || msg.contains("missing port"), "got: {}", msg); } #[test]