summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-07-14 04:20:42 +0200
committerAdmiral H. Curtiss <pikachu025@gmail.com>2023-07-14 04:20:57 +0200
commit17f2072e1c9221aa38bc9f653ce792b2745f0d91 (patch)
treea75d5d97e29c9f20ae7aec5e87e1f8d5f6c11420 /Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
parent7f40c6f2f86cb3f77b155240df0e512dfe1eef29 (diff)
UnitTests: Enable cluster check in FileSystemTest.GetDirectoryStats.
Diffstat (limited to 'Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp')
-rw-r--r--Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
index 5442a66eab..b1e6997e34 100644
--- a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
+++ b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
@@ -269,8 +269,7 @@ TEST_F(FileSystemTest, GetDirectoryStats)
file->Write(std::vector<u8>(20).data(), 20);
}
// The file should now take up one cluster.
- // TODO: uncomment after the FS code is fixed.
- // check_stats(1u, 2u);
+ check_stats(1u, 2u);
}
// Files need to be explicitly created using CreateFile or CreateDirectory.