Skip to content

Commit 00a79cc

Browse files
authoredApr 14, 2022
Fix: not enough arguments to call TransformExcC14n (#428)
1 parent d4ed82f commit 00a79cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎schema.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ func (a *Assertion) Element() *etree.Element {
747747
for _, attributeStatement := range a.AttributeStatements {
748748
el.AddChild(attributeStatement.Element())
749749
}
750-
err := etreeutils.TransformExcC14n(el, canonicalizerPrefixList)
750+
err := etreeutils.TransformExcC14n(el, canonicalizerPrefixList, false)
751751
if err != nil {
752752
panic(err)
753753
}

0 commit comments

Comments
 (0)
Please sign in to comment.