Skip to content

Commit fc41690

Browse files
committed
Testing with additionnal double quotes.
1 parent 2394bf2 commit fc41690

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_jsx.re

+3-3
Original file line numberDiff line numberDiff line change
@@ -333,13 +333,13 @@ let svg = (
333333
),
334334
(
335335
"fill_opacity float, circle",
336-
[<circle cx=1 cy=2 r=3 fill_opacity=0.5 />],
336+
[<circle cx="1" cy="2" r="3" fill_opacity="0.5" />],
337337
[circle(~a=[a_cx((1., None)), a_cy((2., None)), a_r((3., None)), a_fill_opacity(0.5)], [])],
338338
),
339339
(
340340
"fill_opacity percentage, rect",
341-
[<rect x=1 y="2" width=3 height="4" fill_opacity="50%" />],
342-
[rect(~a=[a_cx((1., None)), a_cy((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
341+
[<rect x="1" y="2" width="3" height="4" fill_opacity="50%" />],
342+
[rect(~a=[a_x((1., None)), a_y((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
343343
),
344344
(
345345
"fill_rule nonzero",

0 commit comments

Comments
 (0)