From 6435b51d097c64ed4361d31d410be8aa2fa43e0b Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 17 Sep 2021 21:45:45 +0800 Subject: [PATCH] Remove unused assert --- tests/timestamp_tests.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/timestamp_tests.rs b/tests/timestamp_tests.rs index e1f145ca..6f863b2b 100644 --- a/tests/timestamp_tests.rs +++ b/tests/timestamp_tests.rs @@ -29,7 +29,5 @@ pub async fn create_log(db: &DatabaseConnection) -> Result<(), DbErr> { assert_eq!(log.id.clone(), res.last_insert_id); assert_eq!(Log::find().one(db).await?, Some(log.clone())); - assert!(false); - Ok(()) }