Update gqueue_unit_test.go

This commit is contained in:
jroam
2019-06-17 22:03:41 +08:00
parent 9a42142ce7
commit 9fad898ee3

View File

@ -53,4 +53,6 @@ func TestQueue_Close(t *testing.T) {
q1.Push(2)
gtest.Assert(q1.Len(), 2)
q1.Close()
q1.Pop()
gtest.Assert(q1.Len(), 2)
}