Fixing unit tests

This commit is contained in:
Matthias Koefferlein 2026-03-01 18:13:05 +01:00
parent 4049ccb4ea
commit adca536e1a
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class Tl_TestClass < TestBase
expr = RBA::Expression::new
expr.text = "1+2"
res = expr.eval
assert_equal(res.class.to_s, "Integer")
assert_equal(res.class.to_s == "Fixnum" || res.class.to_s == "Integer", true)
assert_equal(res.to_s, "3")
expr = RBA::Expression::new