Skip to content

Commit 2efc4ba

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_jsx.re

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,12 +333,12 @@ 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%" />],
341+
[<rect x="1" y="2" width="3" height="4" fill_opacity="50%" />],
342342
[rect(~a=[a_cx((1., None)), a_cy((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
343343
),
344344
(

0 commit comments

Comments
 (0)