summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_border_pr.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_border_pr.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_border_pr.rb')
-rw-r--r--test/stylesheet/tc_border_pr.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stylesheet/tc_border_pr.rb b/test/stylesheet/tc_border_pr.rb
index a1069f5d..7216d2d6 100644
--- a/test/stylesheet/tc_border_pr.rb
+++ b/test/stylesheet/tc_border_pr.rb
@@ -17,7 +17,7 @@ class TestBorderPr < Test::Unit::TestCase
def test_color
assert_raise(ArgumentError) { @bpr.color = :red }
- assert_nothing_raised { @bpr.color = Axlsx::Color.new :rgb => "FF000000" }
+ assert_nothing_raised { @bpr.color = Axlsx::Color.new rgb: "FF000000" }
assert(@bpr.color.is_a?(Axlsx::Color))
end