File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ func TestWidevineContentProtection_ImplementsInterface(t *testing.T) {
150150
151151func TestNewMPDLiveWithBaseURLInMPD (t * testing.T ) {
152152 m := NewMPD (DASH_PROFILE_LIVE , VALID_MEDIA_PRESENTATION_DURATION , VALID_MIN_BUFFER_TIME )
153- m .BaseURL = VALID_BASE_URL_VIDEO
153+ m .BaseURL = [] string { VALID_BASE_URL_VIDEO }
154154 require .NotNil (t , m )
155155 expectedMPD := & MPD {
156156 XMLNs : Strptr ("urn:mpeg:dash:schema:mpd:2011" ),
@@ -160,7 +160,7 @@ func TestNewMPDLiveWithBaseURLInMPD(t *testing.T) {
160160 MinBufferTime : Strptr (VALID_MIN_BUFFER_TIME ),
161161 period : & Period {},
162162 Periods : []* Period {{}},
163- BaseURL : VALID_BASE_URL_VIDEO ,
163+ BaseURL : [] string { VALID_BASE_URL_VIDEO } ,
164164 }
165165
166166 expectedString , err := expectedMPD .WriteToString ()
You can’t perform that action at this time.
0 commit comments