This commit is contained in:
Brendan Dahl 2012-04-19 12:34:50 -07:00
parent e18a2c512e
commit 5f17d881a9

View File

@ -32,7 +32,9 @@ describe('stream', function() {
var predictor = new PredictorStream(input, dict);
var result = predictor.getBytes(6);
expect(result).toMatchTypedArray(new Uint8Array([100, 3, 101, 2, 102, 1]));
expect(result).toMatchTypedArray(
new Uint8Array([100, 3, 101, 2, 102, 1])
);
});
});
});