diff options
| author | takkanm <[email protected]> | 2016-11-12 09:20:49 +0900 |
|---|---|---|
| committer | takkanm <[email protected]> | 2016-11-12 09:22:10 +0900 |
| commit | 12d64338491b4d924911cd66b9e2c85dd56af358 (patch) | |
| tree | c74d024e0d23e274725a2ef965de3468e823a268 /test/util | |
| parent | 731639b7d8871e79e96167b64c83f55e06bf78f6 (diff) | |
| download | caxlsx-12d64338491b4d924911cd66b9e2c85dd56af358.tar.gz caxlsx-12d64338491b4d924911cd66b9e2c85dd56af358.zip | |
fix warning: constant ::Fixnum is deprecated
fix Fixnum deprecated warning on Ruby2.4-preview3.
Fixnum was unify into Integer.
https://bugs.ruby-lang.org/issues/12005
Diffstat (limited to 'test/util')
| -rw-r--r-- | test/util/tc_simple_typed_list.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/util/tc_simple_typed_list.rb b/test/util/tc_simple_typed_list.rb index 1596ac13..72bd6246 100644 --- a/test/util/tc_simple_typed_list.rb +++ b/test/util/tc_simple_typed_list.rb @@ -1,7 +1,7 @@ require 'tc_helper.rb' class TestSimpleTypedList < Test::Unit::TestCase def setup - @list = Axlsx::SimpleTypedList.new Fixnum + @list = Axlsx::SimpleTypedList.new Integer end def teardown |
