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

16 lines
392 B
Go

package members
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestChatInfoUnavailableError_Error(t *testing.T) {
require.Equal(t, (&ChatInfoUnavailableError{}).Error(), "chat members info is unavailable")
}
func TestChannelInfoUnavailableError_Error(t *testing.T) {
require.Equal(t, (&ChannelInfoUnavailableError{}).Error(), "channel members info is unavailable")
}