Skip to content

Commit

Permalink
fix (#2432)
Browse files Browse the repository at this point in the history
Signed-off-by: remzi <13716567376yh@gmail.com>

Signed-off-by: remzi <13716567376yh@gmail.com>
  • Loading branch information
HaoYang670 committed Aug 12, 2022
1 parent 0c3c686 commit f60841c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow/src/datatypes/datatype.rs
Expand Up @@ -1487,8 +1487,8 @@ mod test {
let min_bytes = MIN_DECIMAL_BYTES_FOR_LARGER_EACH_PRECISION[i - 1];
max_value += "9";
min_value += "9";
assert_eq!(max_decimal.raw_value(), max_bytes);
assert_eq!(min_decimal.raw_value(), min_bytes);
assert_eq!(max_decimal.raw_value(), &max_bytes);
assert_eq!(min_decimal.raw_value(), &min_bytes);
}
}
}

0 comments on commit f60841c

Please sign in to comment.