1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

Fix feeds package

This commit is contained in:
Maksym Pavlenko
2017-08-20 18:55:56 -07:00
parent 99cac5f464
commit f83602b29b

View File

@ -3,7 +3,6 @@
package feeds
import (
"context"
"testing"
"github.com/golang/mock/gomock"
@ -34,7 +33,7 @@ func TestService_CreateFeed(t *testing.T) {
Format: api.VideoFormat,
}
hashId, err := s.CreateFeed(context.Background(), req)
hashId, err := s.CreateFeed(req, &api.Identity{})
require.NoError(t, err)
require.Equal(t, "123", hashId)
}