From 5f17d881a9e8447a317f97f029f1a914888f875c Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Thu, 19 Apr 2012 12:34:50 -0700 Subject: [PATCH] Fix nit. --- test/unit/stream_spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/stream_spec.js b/test/unit/stream_spec.js index 984c28a8e..d99278e1c 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]) + ); }); }); });