Blame nanoseconds_fix-tests.patch

Jared K. Smith e912895
diff --git a/test.js b/test.js
Jared K. Smith e912895
index 411d7b9..f5319df 100644
Jared K. Smith e912895
--- a/test.js
Jared K. Smith e912895
+++ b/test.js
Jared K. Smith e912895
@@ -8,7 +8,7 @@ describe('nanoseconds', function () {
Jared K. Smith e912895
   it('should convert to nanoseconds:', function () {
Jared K. Smith e912895
     assert.equal(nanoseconds([0, 999]), 999);
Jared K. Smith e912895
     assert.equal(nanoseconds([12, 999]), 12000000999);
Jared K. Smith e912895
-    assert.equal(nanoseconds([1298001, 09187662]), 1298001009187662);
Jared K. Smith e912895
+    assert.equal(nanoseconds([1298001, 9187662]), 1298001009187662);
Jared K. Smith e912895
   });
Jared K. Smith e912895
 
Jared K. Smith e912895
   it('should throw an error:', function () {