diff --git a/quire-server/src/ci/mod.rs b/quire-server/src/ci/mod.rs
index b58e316..582bbe5 100644
--- a/quire-server/src/ci/mod.rs
+++ b/quire-server/src/ci/mod.rs
@@ -254,7 +254,6 @@ mod tests {
use super::*;
use crate::Quire;
use crate::event::PushRef;
- use crate::quire::GlobalConfig;
use std::path::Path;
fn git_in(cwd: &Path, args: &[&str]) {
diff --git a/quire-server/src/quire/web/handlers.rs b/quire-server/src/quire/web/handlers.rs
index c0c2b26..8ad708c 100644
--- a/quire-server/src/quire/web/handlers.rs
+++ b/quire-server/src/quire/web/handlers.rs
@@ -286,7 +286,7 @@ mod tests {
use axum::http::{Request, StatusCode};
use tower::ServiceExt;
- use crate::{GlobalConfig, Quire};
+ use crate::Quire;
/// Build a test axum Router with the CI routes, backed by a tempdir.
struct TestEnv {