Results 1 issues of Mostafa Asgari

To understand the issue take a look at this test: ```Go func TestBytesQueue(t *testing.T) { // given queue := NewBytesQueue(10, 10, true) // when queue.Push([]byte("hello")) queue.Push([]byte("m")) queue.Pop() _, err :=...