@@ -817,7 +817,7 @@ TEST(MiniFile, UUID)
817
817
TEST (MiniFile, FreeSlots)
818
818
{
819
819
FileRaii fileGuard (" test_ntuple_minifile_freeslot.root" );
820
-
820
+
821
821
// Write a TFile, delete some objects in it to create free slots, then write a RNTuple into it with a RBlob
822
822
// fitting into a free slot with some free bytes left. Verify that we properly write the new free slot header
823
823
// and don't end up with a corrupted TFile.
@@ -828,8 +828,8 @@ TEST(MiniFile, FreeSlots)
828
828
file->WriteObject (&dummyObj, " dummy2" );
829
829
file->WriteObject (&dummyObj, " dummy3" );
830
830
// 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;*" );
833
833
}
834
834
835
835
int maxKeySize = -1 ;
@@ -880,7 +880,7 @@ TEST(MiniFile, FreeSlots)
880
880
auto file = std::unique_ptr<TFile>(TFile::Open (fileGuard.GetPath ().c_str (), " UPDATE" ));
881
881
auto keysInfoIter = file->WalkTKeys ();
882
882
std::vector<ROOT::Detail::TKeyMapNode> keysInfo (keysInfoIter.begin (), keysInfoIter.end ());
883
-
883
+
884
884
// Indices into `keysInfo` with the "interesting" free slots, i.e. those that have likely been shrunk by
885
885
// RMiniFileWriter allocating an RBlob into them.
886
886
std::vector<int > gapIndices;
0 commit comments