diff --git a/crates/store/tests/test_calendar.rs b/crates/store/tests/test_calendar.rs index 64bde0b..ca0ba52 100644 --- a/crates/store/tests/test_calendar.rs +++ b/crates/store/tests/test_calendar.rs @@ -9,9 +9,9 @@ const EVENT: &str = include_str!("examples/event.ics"); #[template] #[rstest] #[case::sqlite(async { - let (send, _recv) = tokio::sync::mpsc::channel(100); - SqliteCalendarStore::new(create_test_db().await.unwrap(), send) -})] + let (send, _recv) = tokio::sync::mpsc::channel(100); + SqliteCalendarStore::new(create_test_db().await.unwrap(), send) + })] async fn cal_store( #[future(awt)] #[case] @@ -19,12 +19,6 @@ async fn cal_store( ) { } -#[apply(cal_store)] -#[tokio::test] -async fn test_init(_store: CS) { - // store.get_events("asd").await.unwrap(); -} - #[apply(cal_store)] #[tokio::test] async fn test_create_event(store: CS) {