Skip to content

Commit 4d4dacb

Browse files
committed
encoding/xml: update to ydnar/go@98c89015d3
1 parent 057e4af commit 4d4dacb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marshal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ var marshalTests = []struct {
665665
{Value: &Port{Type: "ssl", Number: "443"}, ExpectXML: `<port type="ssl">443</port>`},
666666
{Value: &Port{Number: "443"}, ExpectXML: `<port>443</port>`},
667667
{Value: &Port{Type: "<unix>"}, ExpectXML: `<port type="&lt;unix&gt;"></port>`},
668-
// Marshal is not symetric to Unmarshal for these oddities because &apos is written as &#39
668+
// Marshal is not symmetric to Unmarshal for these oddities because &apos is written as &#39
669669
{Value: &Port{Type: "<un'ix>"}, ExpectXML: `<port type="&lt;un&apos;ix&gt;"></port>`, UnmarshalOnly: true},
670670
{Value: &Port{Type: "<un\"ix>"}, ExpectXML: `<port type="&lt;un&quot;ix&gt;"></port>`, UnmarshalOnly: true},
671671
{Value: &Port{Type: "<un&ix>"}, ExpectXML: `<port type="&lt;un&amp;ix&gt;"></port>`},

0 commit comments

Comments
 (0)