From 861095d2ac0b12f57370089d33b66aa0a59a282e Mon Sep 17 00:00:00 2001 From: liyuke Date: Thu, 10 Jul 2025 16:16:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9mkdir=20TDD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liyuke Change-Id: If0e63672564e19f08c54b207a12787b02c5cbae7 --- .../test/unittest/js/mod_fs/properties/mkdir_core_mock_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/test/unittest/js/mod_fs/properties/mkdir_core_mock_test.cpp b/interfaces/test/unittest/js/mod_fs/properties/mkdir_core_mock_test.cpp index 34c0d40b5..5a524274e 100644 --- a/interfaces/test/unittest/js/mod_fs/properties/mkdir_core_mock_test.cpp +++ b/interfaces/test/unittest/js/mod_fs/properties/mkdir_core_mock_test.cpp @@ -41,7 +41,7 @@ filesystem::path MkdirCoreMockTest::tempFilePath; void MkdirCoreMockTest::SetUpTestCase(void) { GTEST_LOG_(INFO) << "SetUpTestCase"; - tempFilePath = filesystem::temp_directory_path() / "test"; + tempFilePath = filesystem::temp_directory_path() / "mkdir_core_mock_test"; std::filesystem::create_directory(tempFilePath); uvMock = std::make_shared(); Uvfs::ins = uvMock; -- Gitee