Skip to content

Commit f737fe1

Browse files
committed
CI fixes
1 parent db634f4 commit f737fe1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ assert_cmd = "2"
6060
async-stream = "0.3"
6161
async-trait = "0.1"
6262
axum = { version = "0.8", default-features = false }
63-
backtrace = "0.3"
63+
backtrace = "0.3.76"
6464
bytes = "1.10"
6565
cargo_toml = "0.22"
6666
chrono = { version = "0.4.42", default-features = false }

cot-cli/tests/snapshot_testing/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use std::process::Command;
22

3-
pub(crate) use assert_cmd::prelude::*;
43
pub(crate) use insta_cmd::assert_cmd_snapshot;
54

65
pub(crate) use crate::cot_cli;
@@ -63,7 +62,7 @@ pub(crate) fn cot_cli_cmd() -> Command {
6362
if let Ok(np) = std::env::var("COT_CLI_TEST_CMD") {
6463
Command::new(np)
6564
} else {
66-
Command::cargo_bin("cot").expect("cot-cli should be executable")
65+
Command::new(assert_cmd::cargo::cargo_bin!("cot"))
6766
}
6867
}
6968

0 commit comments

Comments
 (0)