Skip to content

Commit

Permalink
ruby 3.2 dropped Fixnum
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrock committed Sep 24, 2024
1 parent c96ff06 commit 40db8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/extract/tc_registry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def validateVmXml(xml, category)
refute_nil(xml.root.attributes['created_on'])
refute_nil(xml.root.attributes['display_time'])
assert_instance_of(String, xml.root.attributes['display_time'])
assert_instance_of(Fixnum, eval(xml.root.attributes['created_on']))
assert_instance_of(Integer, eval(xml.root.attributes['created_on']))

# Use the as an exit point to generate the reference xml for testing
# createReferenceXml(xml, category)
Expand Down

0 comments on commit 40db8fc

Please sign in to comment.