fix folder move to root

This commit is contained in:
2025-10-25 02:11:05 +02:00
parent 88b9375a4e
commit e972a8dddb
5 changed files with 153 additions and 48 deletions
+3 -2
View File
@@ -165,7 +165,7 @@ impl TestApp {
pub async fn cleanup(&self) -> Result<()> {
let pool = self.state.pool.clone();
tokio::task::spawn_blocking(move || -> Result<()> {
let _ = tokio::task::spawn_blocking(move || -> Result<()> {
let mut conn = pool
.get()
.map_err(|err| anyhow!("failed to get cleanup connection: {err}"))?;
@@ -184,6 +184,7 @@ impl TestApp {
self.storage.clone()
}
#[allow(dead_code)]
pub async fn storage_key_for(&self, key: &str) -> Result<String> {
let tenant = self
.state
@@ -322,7 +323,7 @@ impl TestApp {
#[derive(Deserialize)]
struct TenantSummary {
tenant_id: Uuid,
slug: String,
_slug: String,
}
#[derive(Deserialize)]