File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2089,14 +2089,14 @@ def test_initialize_copy_dup_clone_frozen_error
2089
2089
assert_raise ( err ) { bd . send ( :initialize_dup , bd2 ) }
2090
2090
end
2091
2091
2092
- def test_llong_min
2092
+ def test_llong_min_gh_200
2093
2093
# https://github.com/ruby/bigdecimal/issues/199
2094
2094
# Between LLONG_MIN and -ULLONG_MAX
2095
2095
llong_min = -( 2 ** 63 + 1 )
2096
- assert_equal BigDecimal ( llong_min . to_s ) , BigDecimal ( llong_min )
2096
+ assert_equal ( BigDecimal ( llong_min . to_s ) , BigDecimal ( llong_min ) , "[GH-200]" )
2097
2097
2098
2098
minus_ullong_max = -( 2 ** 64 - 1 )
2099
- assert_equal BigDecimal ( minus_ullong_max . to_s ) , BigDecimal ( minus_ullong_max )
2099
+ assert_equal ( BigDecimal ( minus_ullong_max . to_s ) , BigDecimal ( minus_ullong_max ) , "[GH-200]" )
2100
2100
end
2101
2101
2102
2102
def assert_no_memory_leak ( code , *rest , **opt )
You can’t perform that action at this time.
0 commit comments