diff options
| author | Randy Morgan <[email protected]> | 2012-05-03 20:17:59 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-05-03 20:17:59 +0900 |
| commit | 37d57ceeb5f5b64e1738df224b534ee3cb583943 (patch) | |
| tree | fa16614ff15ce3cf7a7117f2f157611d21e949e3 | |
| parent | 55f3ade0b2fc64d414cb9a1c3bbdcb90bbe1289b (diff) | |
| download | caxlsx-37d57ceeb5f5b64e1738df224b534ee3cb583943.tar.gz caxlsx-37d57ceeb5f5b64e1738df224b534ee3cb583943.zip | |
spec fix
| -rw-r--r-- | test/drawing/tc_two_cell_anchor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/drawing/tc_two_cell_anchor.rb b/test/drawing/tc_two_cell_anchor.rb index e22acce9..c3e58d94 100644 --- a/test/drawing/tc_two_cell_anchor.rb +++ b/test/drawing/tc_two_cell_anchor.rb @@ -23,7 +23,7 @@ class TestTwoCellAnchor < Test::Unit::TestCase def test_options - assert_raise(ArgumentError, 'invalid start_at') { @ws.add_chart Axlsx::Chart, :start_at=>[1] } + assert_raise(ArgumentError, 'invalid start_at') { @ws.add_chart Axlsx::Chart, :start_at=>"1" } assert_raise(ArgumentError, 'invalid end_at') { @ws.add_chart Axlsx::Chart, :start_at=>[1,2], :end_at => ["a", 4] } # this is actually raised in the graphic frame assert_raise(ArgumentError, 'invalid Chart') { @ws.add_chart Axlsx::TwoCellAnchor } |
