summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_font.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-05-22 20:13:13 +0200
committerGeremia Taglialatela <[email protected]>2023-05-22 20:13:13 +0200
commit083c4c6d62011cd88966d608b0c6bb736f300a0c (patch)
treeb5ceb9b3a32c4130d84c3075966b4033bf32a118 /test/stylesheet/tc_font.rb
parent6752225bbb8a9eec905ec02a98f1a25a309c404a (diff)
downloadcaxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.tar.gz
caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.zip
Use Ruby 1.9 hash syntax (non-production code)
Diffstat (limited to 'test/stylesheet/tc_font.rb')
-rw-r--r--test/stylesheet/tc_font.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stylesheet/tc_font.rb b/test/stylesheet/tc_font.rb
index 3cee3e63..c9776be8 100644
--- a/test/stylesheet/tc_font.rb
+++ b/test/stylesheet/tc_font.rb
@@ -118,7 +118,7 @@ class TestFont < Test::Unit::TestCase
# def color=(v) DataTypeValidator.validate "Font.color", Color, v; @color=v end
def test_color
assert_raise(ArgumentError) { @item.color = -7 }
- assert_nothing_raised { @item.color = Axlsx::Color.new(:rgb => "00000000") }
+ assert_nothing_raised { @item.color = Axlsx::Color.new(rgb: "00000000") }
assert(@item.color.is_a?(Axlsx::Color))
end