summaryrefslogtreecommitdiffhomepage
path: root/test/drawing
diff options
context:
space:
mode:
authorJean-Philippe Moal <[email protected]>2013-10-10 15:21:27 +0200
committerJean-Philippe Moal <[email protected]>2013-10-10 15:21:27 +0200
commit82dbc7b81c28c66d530c4f826544527bf692f08b (patch)
tree0166f1e9019e116ac4999ff0695a96653191f472 /test/drawing
parent3171fa568618e9d75ead1994ed6e3be90b693a47 (diff)
downloadcaxlsx-82dbc7b81c28c66d530c4f826544527bf692f08b.tar.gz
caxlsx-82dbc7b81c28c66d530c4f826544527bf692f08b.zip
Do not use a marker tag in bubble series tags
As per the spec, a bubble series tag should not include a marker tag. This was preventing files from being open with Excel Viewer.
Diffstat (limited to 'test/drawing')
-rw-r--r--test/drawing/tc_bubble_series.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/drawing/tc_bubble_series.rb b/test/drawing/tc_bubble_series.rb
index 4bad74b1..e601912f 100644
--- a/test/drawing/tc_bubble_series.rb
+++ b/test/drawing/tc_bubble_series.rb
@@ -15,7 +15,7 @@ class TestBubbleSeries < Test::Unit::TestCase
def test_to_xml_string
doc = Nokogiri::XML(@chart.to_xml_string)
- assert_equal(doc.xpath("//a:srgbClr[@val='#{@series.color}']").size,4)
+ assert_equal(doc.xpath("//a:srgbClr[@val='#{@series.color}']").size,2)
end
end