Skip to content

Commit 2b7bf5b

Browse files
committed
fix(ci): fix cargo fmt, just dep
1 parent 52b66ab commit 2b7bf5b

2 files changed

Lines changed: 14 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: lua watchdog/tests/run.lua
5757

5858
- name: Watchdog divergence drill
59-
run: just test-watchdog-divergence-drill
59+
run: bash scripts/test-watchdog-divergence-drill.sh
6060

6161
- name: Test
6262
timeout-minutes: 15

tests/e2e/src/watchdog_compare.rs

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ use std::process::Stdio;
88
use std::time::Duration;
99

1010
use app_core::application::{WalletApp, WalletConfig};
11-
use sequencer_core::application::Application;
1211
use app_core::wallet_snapshot;
1312
use rollups_harness::ManagedSequencer;
1413
use rollups_harness::paths;
14+
use sequencer_core::application::Application;
1515
use tokio::io::{AsyncReadExt, AsyncWriteExt};
1616
use tokio::net::TcpStream;
1717
use tokio::process::Command;
@@ -160,11 +160,20 @@ fn compare_env(
160160
lua_deps: &Path,
161161
) -> Vec<(String, String)> {
162162
vec![
163-
("WATCHDOG_LUA_DEPS".into(), lua_deps.to_string_lossy().into_owned()),
163+
(
164+
"WATCHDOG_LUA_DEPS".into(),
165+
lua_deps.to_string_lossy().into_owned(),
166+
),
164167
("WATCHDOG_MODE".into(), "compare".into()),
165168
("WATCHDOG_ONCE".into(), "1".into()),
166-
("WATCHDOG_SEQUENCER_URL".into(), runtime.endpoint().to_string()),
167-
("WATCHDOG_L1_RPC_URL".into(), runtime.l1_endpoint().to_string()),
169+
(
170+
"WATCHDOG_SEQUENCER_URL".into(),
171+
runtime.endpoint().to_string(),
172+
),
173+
(
174+
"WATCHDOG_L1_RPC_URL".into(),
175+
runtime.l1_endpoint().to_string(),
176+
),
168177
(
169178
"WATCHDOG_INPUTBOX_ADDRESS".into(),
170179
runtime.input_box_address().to_string(),

0 commit comments

Comments
 (0)