From 40db8fce7b5f835031d5e4ceae6a77efc7b00a4f Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Fri, 20 Sep 2024 15:34:19 -0400 Subject: [PATCH] ruby 3.2 dropped Fixnum --- test/extract/tc_registry.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/extract/tc_registry.rb b/test/extract/tc_registry.rb index fb56eb6..a2adbab 100644 --- a/test/extract/tc_registry.rb +++ b/test/extract/tc_registry.rb @@ -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)