Skip to content

Commit 035e055

Browse files
committed
[NFC][ntuple] style cleanup unit test
1 parent 508a1af commit 035e055

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tree/ntuple/test/ntuple_minifile.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ TEST(MiniFile, UUID)
817817
TEST(MiniFile, FreeSlots)
818818
{
819819
FileRaii fileGuard("test_ntuple_minifile_freeslot.root");
820-
820+
821821
// Write a TFile, delete some objects in it to create free slots, then write a RNTuple into it with a RBlob
822822
// fitting into a free slot with some free bytes left. Verify that we properly write the new free slot header
823823
// and don't end up with a corrupted TFile.
@@ -828,8 +828,8 @@ TEST(MiniFile, FreeSlots)
828828
file->WriteObject(&dummyObj, "dummy2");
829829
file->WriteObject(&dummyObj, "dummy3");
830830
// These deletes will create a free slot about 200 B wide.
831-
file->Delete("dummy;*");
832-
file->Delete("dummy2;*");
831+
file->Delete("dummy;*");
832+
file->Delete("dummy2;*");
833833
}
834834

835835
int maxKeySize = -1;
@@ -880,7 +880,7 @@ TEST(MiniFile, FreeSlots)
880880
auto file = std::unique_ptr<TFile>(TFile::Open(fileGuard.GetPath().c_str(), "UPDATE"));
881881
auto keysInfoIter = file->WalkTKeys();
882882
std::vector<ROOT::Detail::TKeyMapNode> keysInfo(keysInfoIter.begin(), keysInfoIter.end());
883-
883+
884884
// Indices into `keysInfo` with the "interesting" free slots, i.e. those that have likely been shrunk by
885885
// RMiniFileWriter allocating an RBlob into them.
886886
std::vector<int> gapIndices;

0 commit comments

Comments
 (0)