Remove enterprise leftovers from community
CI / Rust Checks (push) Failing after 2m6s
CI / UI Checks (push) Has been skipped
CI / Frontend E2E (push) Has been skipped
CI / Deployment Manifests (push) Has been skipped
Deploy / deploy (push) Successful in 2m26s

This commit is contained in:
github-ops
2026-06-20 12:04:46 +00:00
parent 5f8c208409
commit 0af60b1693
46 changed files with 46 additions and 7096 deletions
+4 -4
View File
@@ -706,18 +706,18 @@ mod tests {
};
store
.put_bucket("tenant:alpha", bucket, Duration::from_secs(30))
.put_bucket("workspace:alpha", bucket, Duration::from_secs(30))
.await
.unwrap();
assert_eq!(
store.get_bucket("tenant:alpha").await.unwrap(),
store.get_bucket("workspace:alpha").await.unwrap(),
Some(bucket)
);
store.delete_bucket("tenant:alpha").await.unwrap();
store.delete_bucket("workspace:alpha").await.unwrap();
assert_eq!(store.get_bucket("tenant:alpha").await.unwrap(), None);
assert_eq!(store.get_bucket("workspace:alpha").await.unwrap(), None);
}
#[tokio::test]