From 534cd599f45be0362be3429bede2ec185c0d6bd9 Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Thu, 13 Feb 2025 15:32:50 +0100 Subject: [PATCH] doc: remove internal links to macro Those worked fine until now, but it seems they started to fail after including the `testing` feature in the benchmark repository. Oh well. --- .../matrix-sdk-base/src/event_cache/store/integration_tests.rs | 2 +- .../src/event_cache/store/media/integration_tests.rs | 2 +- crates/matrix-sdk-base/src/store/integration_tests.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/matrix-sdk-base/src/event_cache/store/integration_tests.rs b/crates/matrix-sdk-base/src/event_cache/store/integration_tests.rs index d863641ae..d9828624f 100644 --- a/crates/matrix-sdk-base/src/event_cache/store/integration_tests.rs +++ b/crates/matrix-sdk-base/src/event_cache/store/integration_tests.rs @@ -100,7 +100,7 @@ pub fn check_test_event(event: &TimelineEvent, text: &str) { /// `EventCacheStore` integration tests. /// /// This trait is not meant to be used directly, but will be used with the -/// [`event_cache_store_integration_tests!`] macro. +/// `event_cache_store_integration_tests!` macro. #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] #[cfg_attr(not(target_arch = "wasm32"), async_trait)] pub trait EventCacheStoreIntegrationTests { diff --git a/crates/matrix-sdk-base/src/event_cache/store/media/integration_tests.rs b/crates/matrix-sdk-base/src/event_cache/store/media/integration_tests.rs index 986c3bdaf..2bd3ff9fe 100644 --- a/crates/matrix-sdk-base/src/event_cache/store/media/integration_tests.rs +++ b/crates/matrix-sdk-base/src/event_cache/store/media/integration_tests.rs @@ -30,7 +30,7 @@ use crate::media::{MediaFormat, MediaRequestParameters}; /// [`EventCacheStoreMedia`] integration tests. /// /// This trait is not meant to be used directly, but will be used with the -/// [`event_cache_store_media_integration_tests!`] macro. +/// `event_cache_store_media_integration_tests!` macro. #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] #[cfg_attr(not(target_arch = "wasm32"), async_trait)] pub trait EventCacheStoreMediaIntegrationTests { diff --git a/crates/matrix-sdk-base/src/store/integration_tests.rs b/crates/matrix-sdk-base/src/store/integration_tests.rs index 94eb18221..0561a4cb6 100644 --- a/crates/matrix-sdk-base/src/store/integration_tests.rs +++ b/crates/matrix-sdk-base/src/store/integration_tests.rs @@ -47,7 +47,7 @@ use crate::{ /// `StateStore` integration tests. /// /// This trait is not meant to be used directly, but will be used with the -/// [`statestore_integration_tests!`] macro. +/// `statestore_integration_tests!` macro. #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] #[cfg_attr(not(target_arch = "wasm32"), async_trait)] pub trait StateStoreIntegrationTests {