From 86e7cc8cad585c669d7cf8c21f91eea2908700e6 Mon Sep 17 00:00:00 2001 From: yanghua Date: Thu, 21 Nov 2024 12:41:47 +0800 Subject: [PATCH] Change hns bucket name --- tosfs/tests/test_tosfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tosfs/tests/test_tosfs.py b/tosfs/tests/test_tosfs.py index 53f9466..93feec2 100644 --- a/tosfs/tests/test_tosfs.py +++ b/tosfs/tests/test_tosfs.py @@ -541,7 +541,7 @@ def test_walk(tosfs: TosFileSystem, bucket: str, temporary_workspace: str) -> No assert len(dirs) > 0 assert files == [] - for root, dirs, files in tosfs.walk(bucket, maxdepth=1): + for root, dirs, _ in tosfs.walk(bucket, maxdepth=1): assert root == bucket assert len(dirs) > 0