Skip to content

Commit c3103e2

Browse files
authored
MINOR: [C++][Parquet] Fix lint failing on main (#50206)
### Rationale for this change Main is currently failing linting due to this PR merge: - #50025 ### What changes are included in this PR? Just run pre-commit lint on the file causing the issue. ### Are these changes tested? Yes, see CI job ### Are there any user-facing changes? No Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
1 parent 1a428c9 commit c3103e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/src/parquet/types_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ TEST(TypePrinter, StatisticsTypesShortValue) {
193193
FormatStatValue(Type::INT32, std::string("abc"), LogicalType::Decimal(6, 2)));
194194
ASSERT_NO_THROW(
195195
FormatStatValue(Type::INT64, std::string("abcdefg"), LogicalType::Decimal(18, 4)));
196-
ASSERT_NO_THROW(
197-
FormatStatValue(Type::FIXED_LEN_BYTE_ARRAY, std::string("a"), LogicalType::Float16()));
196+
ASSERT_NO_THROW(FormatStatValue(Type::FIXED_LEN_BYTE_ARRAY, std::string("a"),
197+
LogicalType::Float16()));
198198
}
199199

200200
TEST(TestInt96Timestamp, Decoding) {

0 commit comments

Comments
 (0)