summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/worksheet/tc_worksheet_hyperlink.rb
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-08-12 23:30:03 +0900
committerRandy Morgan <[email protected]>2012-08-12 23:30:03 +0900
commit874fab4140637f3df989c3606364c8dfa1502a6e (patch)
tree8365296a1fefed8332f3c74573d255c83a6e1c53 /test/workbook/worksheet/tc_worksheet_hyperlink.rb
parent7db5855fa050a18fad0de842f6cb04a71398bbb7 (diff)
downloadcaxlsx-874fab4140637f3df989c3606364c8dfa1502a6e.tar.gz
caxlsx-874fab4140637f3df989c3606364c8dfa1502a6e.zip
remove expired option from test
Diffstat (limited to 'test/workbook/worksheet/tc_worksheet_hyperlink.rb')
-rw-r--r--test/workbook/worksheet/tc_worksheet_hyperlink.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/workbook/worksheet/tc_worksheet_hyperlink.rb b/test/workbook/worksheet/tc_worksheet_hyperlink.rb
index 6c2b1003..66e5eea1 100644
--- a/test/workbook/worksheet/tc_worksheet_hyperlink.rb
+++ b/test/workbook/worksheet/tc_worksheet_hyperlink.rb
@@ -5,7 +5,7 @@ class TestWorksheetHyperlink < Test::Unit::TestCase
p = Axlsx::Package.new
wb = p.workbook
@ws = wb.add_worksheet
- @options = { :location => 'https://github.com/randym/axlsx', :tooltip => 'axlsx', :ref => 'A1', :display => 'AXSLX', :r_id => 'rId1', :target => :internal }
+ @options = { :location => 'https://github.com/randym/axlsx', :tooltip => 'axlsx', :ref => 'A1', :display => 'AXSLX', :target => :internal }
@a = @ws.add_hyperlink @options
end
@@ -31,8 +31,8 @@ class TestWorksheetHyperlink < Test::Unit::TestCase
def test_ref
assert_equal(@options[:ref], @a.ref)
end
-
- def test_r_id
+
+ def test_id
assert_equal("rId1", @a.id)
end