Skip to content

Commit 19f608c

Browse files
committed
fixup items
1 parent 8c94adf commit 19f608c

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

mpd/mpd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ type CommonAttributesAndElements struct {
9898
MimeType *string `xml:"mimeType,attr"`
9999
SegmentProfiles *string `xml:"segmentProfiles,attr"`
100100
Codecs *string `xml:"codecs,attr"`
101-
MaximumSAPPeriod *string `xml:"MaximumSAPPeriod,attr"`
101+
MaximumSAPPeriod *string `xml:"maximumSAPPeriod,attr"`
102102
StartWithSAP *int64 `xml:"startWithSAP,attr"`
103103
MaxPlayoutRate *string `xml:"maxPlayoutRate,attr"`
104104
ScanType *string `xml:"scanType,attr"`

mpd/segment_timeline_test.go

-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import (
55
"testing"
66
"time"
77

8-
"fmt"
9-
108
"github.com/stretchr/testify/require"
119
"github.com/zencoder/go-dash/helpers/ptrs"
1210
"github.com/zencoder/go-dash/helpers/testfixtures"
@@ -25,8 +23,6 @@ func TestSegmentTimelineSerialization(t *testing.T) {
2523
found, err := tc.In.WriteToString()
2624
require.NoError(t, err)
2725
expected := testfixtures.LoadFixture("fixtures/" + tc.Out)
28-
fmt.Println(expected)
29-
fmt.Println(found)
3026
require.Equal(t, expected, found)
3127
})
3228
}

0 commit comments

Comments
 (0)