(fix): tests
All checks were successful
CI / checks (push) Successful in 6m56s

This commit is contained in:
Alois 2026-07-27 21:48:54 +02:00
commit 465a0f338a
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1280,7 +1280,7 @@ dependencies = [
[[package]]
name = "mtp"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"mtp-client",
"mtp-codec",

View file

@ -45,7 +45,7 @@ resolver = "3"
# =============================================================================
[package]
name = "mtp"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
[dependencies]

View file

@ -112,7 +112,7 @@ mod tests {
.fallback(|_, response| async move { response.status(StatusCode::IM_A_TEAPOT) })
.unwrap();
for uri in ["/api/test", "/api/test/"] {
for uri in ["/api", "/api/"] {
assert_eq!(
dispatch_request(request(Method::GET, uri), &router)
.await