]> git.parisson.com Git - pdf.js.git/commitdiff
Fix nit.
authorBrendan Dahl <brendan.dahl@gmail.com>
Thu, 19 Apr 2012 19:34:50 +0000 (12:34 -0700)
committerBrendan Dahl <brendan.dahl@gmail.com>
Thu, 19 Apr 2012 19:34:50 +0000 (12:34 -0700)
test/unit/stream_spec.js

index 984c28a8eca6f23f0362cbd399996ba8f2f5c28d..d99278e1c832b0d08a1cdad96f6de6490a896574 100644 (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])
+      );
     });
   });
 });