Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
driftluo committed Dec 24, 2024
1 parent 4fc9479 commit c26df41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/ckb_rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ fn test_cargo_hang_7() {

#[test]
fn test_cargo_hang_8() {
use std::cell::LazyCell;
use std::sync::LazyLock;

pub static RUNTIME: LazyCell<tokio::runtime::Runtime> = LazyCell::new(|| {
pub static RUNTIME: LazyLock<tokio::runtime::Runtime> = LazyLock::new(|| {
tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
Expand Down

0 comments on commit c26df41

Please sign in to comment.