We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ef9a0 commit d254ec2Copy full SHA for d254ec2
crates/e2e-tests/tests/test_basic_bundle.rs
@@ -94,10 +94,12 @@ async fn test_send_bundle_rejects_empty() -> Result<()> {
94
95
// Empty bundles should be rejected
96
assert!(result.is_err(), "Empty bundle should be rejected");
97
-
+
98
let error_msg = result.unwrap_err().to_string();
99
assert!(
100
- error_msg.contains("RPC error") || error_msg.contains("empty") || error_msg.contains("validation"),
+ error_msg.contains("RPC error")
101
+ || error_msg.contains("empty")
102
+ || error_msg.contains("validation"),
103
"Error should mention validation failure, got: {}",
104
error_msg
105
);
0 commit comments