streaming

Media streaming and broadcast systems in Go
Log | Files | Refs | README | LICENSE

commit bbef141bd216808e5836e76e786702ceeb515683
parent 5dcc7d4da3f8e457161ac23ad852fa6e014a8df5
Author: Oliver Lowe <o@olowe.co>
Date:   Tue, 11 Jun 2024 19:03:57 +1000

scte35: remove useless test

Doesn't test anything other than, maybe, for a panic?

Diffstat:
Dscte35/splice_schedule_test.go | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

diff --git a/scte35/splice_schedule_test.go b/scte35/splice_schedule_test.go @@ -1,17 +0,0 @@ -package scte35 - -import ( - "testing" - "time" -) - -func TestPackEvent(t *testing.T) { - ev := Event{ - ID: 6969, - SpliceTime: time.Now().Add(5 * time.Second), - ProgramID: uint16(500), - AvailNum: 4, - AvailExpected: 2, - } - packEvent(&ev) -}