mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
remove unused test
This commit is contained in:
parent
b820609088
commit
868e47f994
|
@ -1,15 +0,0 @@
|
|||
package directory
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"log"
|
||||
)
|
||||
|
||||
func TestSerialDeserialization(t *testing.T) {
|
||||
f1 := &FileId{VolumeId: 345, Key:8698, Hashcode: 23849095}
|
||||
log.Println("vid", f1.VolumeId, "key", f1.Key, "hash", f1.Hashcode)
|
||||
|
||||
f2 := ParseFileId(t.String())
|
||||
|
||||
log.Println("vvid", f2.VolumeId, "vkey", f2.Key, "vhash", f2.Hashcode)
|
||||
}
|
Loading…
Reference in a new issue