stream_test.go | 4 ++-- diff --git a/stream_test.go b/stream_test.go index 0654a5299b26419955b39dbb836db47aa834da37..0fa444e2cbff4c7654935aa9fab01cd7f0074050 100644 --- a/stream_test.go +++ b/stream_test.go @@ -13,7 +13,7 @@ "strings" "testing" ) -func TestStream(t *testing.T) { +func TestStreamIllegal(t *testing.T) { // Simple testing, no actual decoding reader := strings.NewReader("hello test test this is not a legal Opus stream") _, err := NewStream(reader) @@ -45,7 +45,7 @@ } } } -func TestFile(t *testing.T) { +func TestStream(t *testing.T) { // Simple testing, no actual decoding reader, err := os.Open("testdata/speech_8.opus") if err != nil {