@@ -23,7 +23,7 @@ func TestMakePSSHBox_Widevine(t *testing.T) {
2323 panic (err .Error ())
2424 }
2525
26- psshBox , err := makePSSHBox (wvSystemID , payload )
26+ psshBox , err := MakePSSHBox (wvSystemID , payload )
2727 require .NoError (t , err )
2828
2929 require .EqualString (t , string (expectedPSSH ), string (psshBox ))
@@ -46,18 +46,18 @@ func TestMakePSSHBox_Playready(t *testing.T) {
4646 panic (err .Error ())
4747 }
4848
49- psshBox , err := makePSSHBox (wvSystemID , payload )
49+ psshBox , err := MakePSSHBox (wvSystemID , payload )
5050 require .NoError (t , err )
5151
5252 require .EqualString (t , string (expectedPSSH ), string (psshBox ))
5353}
5454
5555func TestMakePSSHBox_BadSystemID (t * testing.T ) {
56- _ , err := makePSSHBox ([]byte ("meaningless byte array" ), nil )
56+ _ , err := MakePSSHBox ([]byte ("meaningless byte array" ), nil )
5757 require .EqualError (t , err , "SystemID must be 16 bytes, was: 22" )
5858}
5959
6060func TestMakePSSHBox_NilSystemID (t * testing.T ) {
61- _ , err := makePSSHBox (nil , nil )
61+ _ , err := MakePSSHBox (nil , nil )
6262 require .EqualError (t , err , "SystemID must be 16 bytes, was: 0" )
6363}
0 commit comments