Files
mautrix-telegram/pkg/gotd/session/tdesktop/errors_test.go
T
2025-06-27 20:03:37 -07:00

13 lines
187 B
Go

package tdesktop
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestWrongMagicError_Error(t *testing.T) {
w := &WrongMagicError{}
require.NotEmpty(t, w.Error())
}