mirror of https://github.com/etcd-io/bbolt.git
remove excessive []byte(s) conversion (#143)
`copy` permits using to mix `[]byte` and `string` arguments without explicit conversion. I removed explicit conversion to make the code simpler. Signed-off-by: Iskander Sharipov <quasilyte@gmail.com>pull/148/head v1.3.2
parent
8693da9f4d
commit
63597a96ec
|
@ -45,8 +45,8 @@ func TestNode_read_LeafPage(t *testing.T) {
|
|||
|
||||
// Write data for the nodes at the end.
|
||||
data := (*[4096]byte)(unsafe.Pointer(&nodes[2]))
|
||||
copy(data[:], []byte("barfooz"))
|
||||
copy(data[7:], []byte("helloworldbye"))
|
||||
copy(data[:], "barfooz")
|
||||
copy(data[7:], "helloworldbye")
|
||||
|
||||
// Deserialize page into a leaf.
|
||||
n := &node{}
|
||||
|
|
Loading…
Reference in New Issue