We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815f449 commit 7a63d00Copy full SHA for 7a63d00
c_glib/test/test-decimal.rb
@@ -38,12 +38,12 @@ def test_abs
38
end
39
40
def test_negate
41
- absolute_value = "23049223942343532412"
+ positive_value = "23049223942343532412"
42
negative_value = "-23049223942343532412"
43
- decimal = Arrow::Decimal128.new(absolute_value)
+ decimal = Arrow::Decimal128.new(positive_value)
44
decimal.negate
45
assert_equal(negative_value, decimal.to_s)
46
47
- assert_equal(absolute_value, decimal.to_s)
+ assert_equal(positive_value, decimal.to_s)
48
49
0 commit comments