Unnecessary test checks removed
This commit is contained in:
parent
acd1c1527c
commit
9c1aff3655
|
@ -3,7 +3,6 @@ package notification
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/NaySoftware/go-fcm"
|
||||
t "github.com/status-im/status-go/geth/testing"
|
||||
"github.com/stretchr/testify/suite"
|
||||
)
|
||||
|
@ -18,6 +17,6 @@ type FCMClientTestSuite struct {
|
|||
|
||||
func (s *FCMClientTestSuite) TestNewFCMClient() {
|
||||
fcmClient := NewFCMClient()
|
||||
|
||||
s.Require().NotNil(fcmClient)
|
||||
s.Require().IsType(&fcm.FcmClient{}, fcmClient)
|
||||
}
|
||||
}
|
|
@ -31,7 +31,6 @@ func (s *NotificationTestSuite) TearDownTest() {
|
|||
func (s *NotificationTestSuite) TestNewNotification() {
|
||||
manager := New(nil)
|
||||
s.Require().NotNil(manager)
|
||||
s.Require().IsType(&Manager{}, manager)
|
||||
}
|
||||
|
||||
func (s *NotificationTestSuite) TestNotify() {
|
||||
|
|
Loading…
Reference in New Issue