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 5019704 commit 4959a73Copy full SHA for 4959a73
tests/deployment_integration_tests.rs
@@ -325,16 +325,9 @@ fn test_commitment_config_variations() {
325
for config in configs {
326
// Test that commitment configs can be used properly
327
assert!(
328
- matches!(
329
- config.commitment,
330
- CommitmentLevel::Processed
331
- ) || matches!(
332
333
- CommitmentLevel::Confirmed
334
335
336
- CommitmentLevel::Finalized
337
- )
+ matches!(config.commitment, CommitmentLevel::Processed)
+ || matches!(config.commitment, CommitmentLevel::Confirmed)
+ || matches!(config.commitment, CommitmentLevel::Finalized)
338
);
339
}
340
0 commit comments