git » sdk » commit 6f14022

Fix tests

author Stephen Paul Weber
2024-05-21 02:57:28 UTC
committer Stephen Paul Weber
2024-05-21 02:57:28 UTC
parent 8cbdd7a4a34a25055e61acb8bc121384ae452f57

Fix tests

snikket/Stanza.hx +1 -0

diff --git a/snikket/Stanza.hx b/snikket/Stanza.hx
index a438017..06784fa 100644
--- a/snikket/Stanza.hx
+++ b/snikket/Stanza.hx
@@ -80,6 +80,7 @@ class Stanza implements NodeInterface {
 	}
 
 	@:allow(snikket)
+	@:allow(test)
 	private static function fromXml(el:Xml):Stanza {
 		if(el.nodeType == XmlType.Document) {
 			return fromXml(el.firstElement());