summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorRandy Morgan (@morgan_randy) <[email protected]>2015-11-19 00:49:25 +0900
committerRandy Morgan (@morgan_randy) <[email protected]>2015-11-19 00:49:25 +0900
commit776aaf53cb5c19c854c27f5daedd40431ad5b2ba (patch)
treebbeb6d347b4fb7a21dcfc980cacbfca8ff0899b5 /test
parentb357172c69cbcf1f78b53912fb820fc902babad5 (diff)
parentec5ab8a5a624f2bcb2f341a219279d8d4264150d (diff)
downloadcaxlsx-776aaf53cb5c19c854c27f5daedd40431ad5b2ba.tar.gz
caxlsx-776aaf53cb5c19c854c27f5daedd40431ad5b2ba.zip
Merge pull request #426 from ringe/master
Update dependencies, remove som code reek
Diffstat (limited to 'test')
-rw-r--r--test/workbook/tc_shared_strings_table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/workbook/tc_shared_strings_table.rb b/test/workbook/tc_shared_strings_table.rb
index 1656dfbd..25a0a0b2 100644
--- a/test/workbook/tc_shared_strings_table.rb
+++ b/test/workbook/tc_shared_strings_table.rb
@@ -49,7 +49,7 @@ class TestSharedStringsTable < Test::Unit::TestCase
assert @p.workbook.shared_strings.unique_cells.has_key?(nasties)
# test that none of the control characters are in the XML output for shared strings
- assert_no_match /#{Axlsx::CONTROL_CHARS}/, @p.workbook.shared_strings.to_xml_string
+ assert_no_match(/#{Axlsx::CONTROL_CHARS}/, @p.workbook.shared_strings.to_xml_string)
# assert that the shared string was normalized to remove the control characters
assert_not_nil @p.workbook.shared_strings.to_xml_string.index("helloworld")