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

View File

@@ -185,7 +185,7 @@ func TestSendIq(t *testing.T) {
select {
case <-res:
case err := <-errChan:
t.Fatalf(err.Error())
t.Fatal(err)
}
clientDone <- struct{}{}
}()
@@ -367,7 +367,7 @@ func TestStreamManagerDisconnect(t *testing.T) {
//=============================================================================
// Basic XMPP Server Mock Handlers.
//===============================
// ===============================
// Init mock server and connection
// Creating a mock server and connecting a Component to it. Initialized with given port and handler function
// The Component and mock are both returned