fix bug when reading back the replica settings!

This commit is contained in:
Chris Lu
2014-04-13 03:06:15 -07:00
parent 47620bb27a
commit 6084e7670a
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package storage
import (
"testing"
)
func TestReplicaPlacemnetSerialDeserial(t *testing.T) {
rp, _ := NewReplicaPlacementFromString("001")
new_rp, _ := NewReplicaPlacementFromByte(rp.Byte())
if rp.String() != new_rp.String() {
println("expected:", rp.String(), "actual:", new_rp.String())
t.Fail()
}
}