From 3d218b0d8de9993a035a74c880afc1fe195e3b6e Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Wed, 15 Jan 2025 21:01:27 +0100 Subject: [PATCH] remove garbage "test" --- crates/store/tests/test_calendar.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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) {