Hedi
Results
1
comments of
Hedi
You can see the bug in action by running this unit test: ``` func TestRingInsertSizeOne(t *testing.T) { rb := NewRingBuffer(1) assert.Equal(t, uint64(1), rb.Cap()) err := rb.Put("Hello") if !assert.Nil(t, err) {...