Skip to content

Commit

Permalink
Fix lint failure and test name
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecrv committed Dec 8, 2023
1 parent d9337c5 commit e237bb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/filesystem/azurefs_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ TEST_F(AzuriteFileSystemTest, GetFileInfoSelectorRecursive) {
AssertFileInfo(infos[3], "container/otherdir/1/2/3/otherfile", FileType::File, 10);
}

TEST_F(AzuriteFileSystemTest, TestGetFileInfoSelectorExplicitImplicitDirDedup) {
TEST_F(AzuriteFileSystemTest, GetFileInfoSelectorExplicitImplicitDirDedup) {
{
auto container = CreateContainer("container");
CreateBlob(container, "mydir/emptydir1/");
Expand Down
3 changes: 1 addition & 2 deletions cpp/src/arrow/filesystem/filesystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,7 @@ Status CopyFiles(const std::shared_ptr<FileSystem>& source_fs,
"', which is outside base dir '", source_sel.base_dir, "'");
}

auto destination_path =
internal::ConcatAbstractPath(destination_base_dir, *relative);
auto destination_path = internal::ConcatAbstractPath(destination_base_dir, *relative);

if (source_info.IsDirectory()) {
dirs.push_back(destination_path);
Expand Down

0 comments on commit e237bb8

Please sign in to comment.