diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-05-26 15:33:25 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2021-06-07 19:14:34 +0900 |
commit | 30594301b8107b6e246edaa4a3331f1f05510008 (patch) | |
tree | 3f4c6d61b1d34ee97851d8c9d529c3c4420c2dd7 | |
parent | 4049939006dc424ef21f8455bb07e8f955b0d18e (diff) | |
download | psych-30594301b8107b6e246edaa4a3331f1f05510008.zip |
Suppress debug message
-rw-r--r-- | test/psych/test_numeric.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/psych/test_numeric.rb b/test/psych/test_numeric.rb index db99a2a..8c3dcd1 100644 --- a/test/psych/test_numeric.rb +++ b/test/psych/test_numeric.rb @@ -33,6 +33,7 @@ module Psych def test_big_decimal_round_trip decimal = BigDecimal("12.34") + $DEBUG = false assert_cycle decimal end |