From d2e9347be41be915723f74b58cc76da8d8159498 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 15 May 2023 16:03:54 +0200 Subject: [PATCH] test(sdk): Put `sliding_sync` behind its feature flag. --- crates/matrix-sdk/tests/integration/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/matrix-sdk/tests/integration/main.rs b/crates/matrix-sdk/tests/integration/main.rs index b0894d876..64b964d2b 100644 --- a/crates/matrix-sdk/tests/integration/main.rs +++ b/crates/matrix-sdk/tests/integration/main.rs @@ -16,6 +16,7 @@ use wiremock::{ mod client; mod refresh_token; mod room; +#[cfg(feature = "experimental-sliding-sync")] mod sliding_sync; #[cfg(all(test, not(target_arch = "wasm32")))]