Skip to content

Commit

Permalink
remove explicit panic
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Aug 6, 2024
1 parent 5e8bb13 commit 989735f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions router-bridge/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -787,10 +787,9 @@ pub struct QueryPlannerDebugConfig {
}
#[cfg(test)]
mod tests {
use futures::stream;
use futures::stream::StreamExt;
use futures::stream::{self};

use core::panic;
use std::collections::BTreeMap;

use super::*;
Expand Down Expand Up @@ -1904,7 +1903,6 @@ ofType {
let statistics = planner.get_heap_statistics().await.unwrap();

println!("statistics: {statistics:?}");
panic!()
}
}

Expand Down

0 comments on commit 989735f

Please sign in to comment.