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 fa12150 commit 50d898bCopy full SHA for 50d898b
etl/tests/integration/partitioned_table_test.rs
@@ -92,7 +92,7 @@ async fn partitioned_table_sync_succeeds_with_inherited_primary_keys() {
92
for &partition_id in &partition_table_ids {
93
let state = table_states
94
.get(&partition_id)
95
- .expect(&format!("Partition {} should have a state", partition_id));
+ .unwrap_or_else(|| panic!("Partition {} should have a state", partition_id));
96
assert!(
97
matches!(
98
state.as_type(),
0 commit comments