This commit is contained in:
Scott E. Graves 2024-11-08 12:41:21 -06:00
parent 2930933f19
commit 984657a5dd

View File

@ -175,7 +175,7 @@ public:
dir_name += std::to_string(++idx); dir_name += std::to_string(++idx);
auto dir_path = utils::path::combine(mount_location, {dir_name}); auto dir_path = utils::path::combine(mount_location, {dir_name});
EXPECT_TRUE(utils::file::directory(dir_path).create()); EXPECT_TRUE(utils::file::directory(dir_path).create_directory());
EXPECT_TRUE(utils::file::directory(dir_path).exists()); EXPECT_TRUE(utils::file::directory(dir_path).exists());
EXPECT_FALSE(utils::file::file(dir_path).exists()); EXPECT_FALSE(utils::file::file(dir_path).exists());