1
0
Fork 0

Simpler test logic

master
Philip O'Toole 10 months ago
parent 04c4671b68
commit a771b11b8d

@ -72,9 +72,8 @@ func Test_ChunkerSingleChunk(t *testing.T) {
func Test_ChunkerAbort(t *testing.T) { func Test_ChunkerAbort(t *testing.T) {
data := []byte("Hello, world!") data := []byte("Hello, world!")
chunker := NewChunker(bytes.NewReader(data), 32) chunker := NewChunker(bytes.NewReader(data), 32)
chunk := chunker.Abort() if chunker.Abort().Abort != true {
if chunk.Abort != true { t.Errorf("expected Abort to be true")
t.Errorf("expected Abort to be true, got %v", chunk.Abort)
} }
} }

Loading…
Cancel
Save