Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Nov 20, 2023
1 parent 9a0d9ca commit 0e84a82
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -696,7 +696,7 @@ TEST_F(AzuriteFileSystemTest, OpenOutputStreamSmall) {
ASSERT_OK_AND_ASSIGN(auto input, fs_->OpenInputStream(path));

std::array<char, 1024> inbuf{};
ASSERT_OK_AND_ASSIGN(auto size, input->Read(inbuf.size(), inbuf.data()));
ASSERT_OK_AND_ASSIGN(auto size, input->Read(inbuf.size(), inbuf.data()));

EXPECT_EQ(expected, std::string_view(inbuf.data(), size));
}
Expand Down

0 comments on commit 0e84a82

Please sign in to comment.