From: Brendan Dahl Date: Thu, 19 Apr 2012 19:34:50 +0000 (-0700) Subject: Fix nit. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5f17d881a9e8447a317f97f029f1a914888f875c;p=pdf.js.git Fix nit. --- diff --git a/test/unit/stream_spec.js b/test/unit/stream_spec.js index 984c28a..d99278e 100644 --- a/test/unit/stream_spec.js +++ b/test/unit/stream_spec.js @@ -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]) + ); }); }); });