This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new f1502d031 ci: Fix doc test for yandex-disk (#7063)
f1502d031 is described below

commit f1502d031ecc509275cbf703ac015a2d3e308f84
Author: Xuanwo <[email protected]>
AuthorDate: Fri Dec 19 00:54:46 2025 +0800

    ci: Fix doc test for yandex-disk (#7063)
    
    Fix tests
---
 core/services/yandex-disk/Cargo.toml  | 2 +-
 core/services/yandex-disk/src/docs.md | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/services/yandex-disk/Cargo.toml 
b/core/services/yandex-disk/Cargo.toml
index 727635efc..272e4758a 100644
--- a/core/services/yandex-disk/Cargo.toml
+++ b/core/services/yandex-disk/Cargo.toml
@@ -42,4 +42,4 @@ serde = { workspace = true, features = ["derive"] }
 serde_json = { workspace = true }
 
 [dev-dependencies]
-tokio = { workspace = true }
+tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
diff --git a/core/services/yandex-disk/src/docs.md 
b/core/services/yandex-disk/src/docs.md
index 8a9670a4e..dda8b4320 100644
--- a/core/services/yandex-disk/src/docs.md
+++ b/core/services/yandex-disk/src/docs.md
@@ -24,9 +24,9 @@ You can refer to [`YandexDiskBuilder`]'s docs for more 
information
 ### Via Builder
 
 ```rust,no_run
-use anyhow::Result;
-use opendal_core::services::YandexDisk;
 use opendal_core::Operator;
+use opendal_core::Result;
+use opendal_service_yandex_disk::YandexDisk;
 
 #[tokio::main]
 async fn main() -> Result<()> {

Reply via email to