summaryrefslogtreecommitdiffstats
path: root/sixel_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'sixel_test.go')
-rw-r--r--sixel_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/sixel_test.go b/sixel_test.go
index eb7f989..b19414b 100644
--- a/sixel_test.go
+++ b/sixel_test.go
@@ -17,7 +17,6 @@ func BenchmarkQuickSelect(b *testing.B) {
b.StopTimer()
copy(myTestSlice, testSlice)
b.StartTimer()
- var randState uint64
- quickSelect(myTestSlice, len(myTestSlice)/2, cmp.Compare, &randState)
+ quickSelect(myTestSlice, len(myTestSlice)/2, cmp.Compare)
}
}