Skip to content

Commit

Permalink
fix clang format error
Browse files Browse the repository at this point in the history
  • Loading branch information
jolly-chen authored and dpiparo committed Apr 27, 2024
1 parent ef7de92 commit c81266d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tree/tree/test/TChainParsing.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,9 @@ TEST(TChainParsing, RecursiveGlob)
const auto *regexChainFiles = regex.GetListOfFiles();
ASSERT_TRUE(regexChainFiles);
EXPECT_EQ(regexChainFiles->GetEntries(), 3);
std::vector<std::string> expectedFileNamesRegex{
ConcatUnixFileName(cwd, "testglob/subdir1/1a.root"),
ConcatUnixFileName(cwd, "testglob/subdir1/1b.root"),
ConcatUnixFileName(cwd, "testglob/subdir3/3a.root")};
std::vector<std::string> expectedFileNamesRegex{ConcatUnixFileName(cwd, "testglob/subdir1/1a.root"),
ConcatUnixFileName(cwd, "testglob/subdir1/1b.root"),
ConcatUnixFileName(cwd, "testglob/subdir3/3a.root")};
auto regexChainFileNames = GetFileNamesVec(regexChainFiles);
EXPECT_VEC_EQ(regexChainFileNames, expectedFileNamesRegex);
}
Expand Down

0 comments on commit c81266d

Please sign in to comment.