diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-10 22:28:10 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-10 22:28:10 +0200 |
| commit | b4011176cc4b68aed77a6946610a3dcf3b938e95 (patch) | |
| tree | 65120528263f2330b06829fecf2c4a76052069c7 /crates/atuin-client/src/import/zsh_histdb.rs | |
| parent | chore: Remove more useless code (diff) | |
| download | atuin-b4011176cc4b68aed77a6946610a3dcf3b938e95.zip | |
chore: Turn all `allow`s into into `expect`s
Diffstat (limited to 'crates/atuin-client/src/import/zsh_histdb.rs')
| -rw-r--r-- | crates/atuin-client/src/import/zsh_histdb.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/import/zsh_histdb.rs b/crates/atuin-client/src/import/zsh_histdb.rs index cac85566..bf44c3ad 100644 --- a/crates/atuin-client/src/import/zsh_histdb.rs +++ b/crates/atuin-client/src/import/zsh_histdb.rs @@ -178,7 +178,7 @@ mod test { use sqlx::sqlite::SqlitePoolOptions; use std::env; #[tokio::test(flavor = "multi_thread")] - #[allow(unsafe_code)] + #[expect(unsafe_code)] async fn test_env_vars() { let test_env_db = "nonstd-zsh-history.db"; let key = "HISTDB_FILE"; |
