From 21fd4997520fb83cfc79542d6d8852fb85b65b62 Mon Sep 17 00:00:00 2001 From: blaginin Date: Wed, 28 Aug 2024 23:42:25 +0100 Subject: [PATCH] Remove `notification.session` assert as it is present only for some engines --- sdk/tests/api/live.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/tests/api/live.rs b/sdk/tests/api/live.rs index c1e3d039b04e..7ccc46cb3201 100644 --- a/sdk/tests/api/live.rs +++ b/sdk/tests/api/live.rs @@ -125,8 +125,6 @@ async fn live_select_record_id() { tokio::time::timeout(LQ_TIMEOUT, users.next()).await.unwrap().unwrap().unwrap(); // It should be updated assert_eq!(notification.action, Action::Update); - // Session id should be present because it is auto generated - assert!(notification.session.is_some()); // Delete the record let _: Option = db.delete(¬ification.data.id).await.unwrap();