Skip to content

Commit f32c45d

Browse files
committed
test: use a valid precision (38) in TEST_PRIMITIVE_TYPES
DecimalType(100, 2) exceeds the spec's max precision of 38 and is now rejected by the new validation; use the maximum valid precision instead.
1 parent 662c0df commit f32c45d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
FloatType(),
6868
DoubleType(),
6969
DecimalType(10, 2),
70-
DecimalType(100, 2),
70+
DecimalType(38, 2),
7171
StringType(),
7272
DateType(),
7373
TimeType(),

0 commit comments

Comments
 (0)