Skip to content

Commit

Permalink
fix() typo
Browse files Browse the repository at this point in the history
  • Loading branch information
immortal-tofu authored Jan 15, 2024
1 parent a9c944c commit a9bbd8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fhevm/benchmarks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ func TestBenchmarks(t *testing.T) {
benchTests(t, "shr", func(fheUintType FheUintType) { FheMin(t, fheUintType, false) })
benchTests(t, "ScalarShr", func(fheUintType FheUintType) { FheMin(t, fheUintType, true) })

benchTests(t, "min", func(fheUintType FheUintType) { FheMin(t, fheUintType, false) })
benchTests(t, "ScalarMin", func(fheUintType FheUintType) { FheMin(t, fheUintType, true) })
benchTests(t, "min", func(fheUintType FheUintType) { FheShr(t, fheUintType, false) })
benchTests(t, "ScalarMin", func(fheUintType FheUintType) { FheShr(t, fheUintType, true) })

benchTests(t, "add", func(fheUintType FheUintType) { FheAdd(t, fheUintType, false) })
benchTests(t, "ScalarAdd", func(fheUintType FheUintType) { FheAdd(t, fheUintType, true) })
Expand Down

0 comments on commit a9bbd8f

Please sign in to comment.