Skip to content

Commit

Permalink
Merge pull request #2 from miparnisari/alert
Browse files Browse the repository at this point in the history
regression maybe
  • Loading branch information
miparnisari authored Oct 19, 2023
2 parents d528520 + c7904a0 commit ca9fbea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ import (

func BenchmarkFib10(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Fib(15)
_ = Fib(10)
}
}

func BenchmarkFib20(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Fib(26)
_ = Fib(20)
}
}

func BenchmarkFib25(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Fib(35)
_ = Fib(25)
}
}

0 comments on commit ca9fbea

Please sign in to comment.