Unnecessary test checks removed

This commit is contained in:
Eugene 2017-10-10 14:18:15 +03:00 committed by Evgeny Danienko
parent acd1c1527c
commit 9c1aff3655
No known key found for this signature in database
GPG Key ID: BC8C34D8B45BECBF
2 changed files with 2 additions and 4 deletions

View File

@ -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)
}
}

View File

@ -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() {