Fix test for network open_input error message change

This commit is contained in:
MattJackson
2026-04-15 04:54:19 +00:00
parent b510ae9b29
commit cfa80cb881
+1 -1
View File
@@ -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]