Bump Go version and go-cmp version

Update code to fix tests.
This commit is contained in:
Mickaël Rémond
2025-09-29 13:53:45 +02:00
parent 7186c058fd
commit 8e1c4f1204
8 changed files with 64 additions and 164 deletions
+3 -2
View File
@@ -2,8 +2,9 @@ package stanza_test
import (
"encoding/xml"
"gosrc.io/xmpp/stanza"
"testing"
"gosrc.io/xmpp/stanza"
)
func TestMarshalCommands(t *testing.T) {
@@ -35,6 +36,6 @@ func TestMarshalCommands(t *testing.T) {
}
if err := compareMarshal(input, string(data)); err != nil {
t.Fatalf(err.Error())
t.Fatal(err)
}
}