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
Iskander (Alex) Sharipov 2019-01-28 21:11:30 +03:00 committed by Xiang Li
parent 8693da9f4d
commit 63597a96ec
1 changed files with 2 additions and 2 deletions

View File

@ -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{}