[#8] hrw/test: Fix typo in benchmarks

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-06-01 21:34:05 +03:00
parent 266da7c69a
commit 2ac89c82b6

View file

@ -737,7 +737,7 @@ func BenchmarkSortHashersByWeightValueReflection_fnv_100(b *testing.B) {
} }
func BenchmarkSortHashersByWeightValueReflection_fnv_1000(b *testing.B) { func BenchmarkSortHashersByWeightValueReflection_fnv_1000(b *testing.B) {
benchmarkSortHashersByWeightValueRelection(b, 100, Hash(testKey)) benchmarkSortHashersByWeightValueRelection(b, 1000, Hash(testKey))
} }
func BenchmarkSortHashersByWeightValueTyped_fnv_10(b *testing.B) { func BenchmarkSortHashersByWeightValueTyped_fnv_10(b *testing.B) {
@ -749,7 +749,7 @@ func BenchmarkSortHashersByWeightValueTyped_fnv_100(b *testing.B) {
} }
func BenchmarkSortHashersByWeightValueTyped_fnv_1000(b *testing.B) { func BenchmarkSortHashersByWeightValueTyped_fnv_1000(b *testing.B) {
benchmarkSortHashersByWeightValueTyped(b, 100, Hash(testKey)) benchmarkSortHashersByWeightValueTyped(b, 1000, Hash(testKey))
} }
func benchmarkSort(b *testing.B, n int, hash uint64) uint64 { func benchmarkSort(b *testing.B, n int, hash uint64) uint64 {