751bc84ce5
fix new channel syncs fix e2e tests
12 lines
198 B
Go
12 lines
198 B
Go
package ytapi
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestChannelInfo(t *testing.T) {
|
|
_, _, err := ChannelInfo("", "UCNQfQvFMPnInwsU_iGYArJQ")
|
|
assert.NoError(t, err)
|
|
}
|