Revert "fixed fib sum, it was doing the sum for lenght + 1"
[tech-radar.git] / test / utils / fib-spec.js
index cdd8ac0..50d00f1 100644 (file)
@@ -8,6 +8,6 @@ describe('tr.util.Fib', function () {
   it('returns the sum of a sequence', function () {
     var fib = new tr.util.Fib();
 
-    expect(fib.sum(6)).toEqual(12);
+    expect(fib.sum(5)).toEqual(12);
   });
 });