wip: cargo fmt && cargo clippy --fix

This commit is contained in:
Jeremy Wall 2025-07-02 16:17:02 -05:00
parent 2e673d5304
commit 5f3fa32fa8

View File

@ -4,8 +4,7 @@ use offline_web_model::Reference;
use offline_web_storage::ReferenceStore;
async fn create_test_store() -> ReferenceStore {
let store = ReferenceStore::new("sqlite::memory:").await.unwrap();
store
ReferenceStore::new("sqlite::memory:").await.unwrap()
}
#[tokio::test]