1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-18 06:50:35 +02:00
This commit is contained in:
Chris Lu 2019-04-04 19:34:15 -07:00
parent af37b374cb
commit 9cc73f4a9a

View file

@ -47,8 +47,8 @@ func TestHandlingVolumeServerHeartbeat(t *testing.T) {
topo.SyncDataNodeRegistration(volumeMessages, dn)
assert(t, "activeVolumeCount1", topo.activeVolumeCount, volumeCount)
assert(t, "volumeCount", topo.volumeCount, volumeCount)
assert(t, "activeVolumeCount1", int(topo.activeVolumeCount), volumeCount)
assert(t, "volumeCount", int(topo.volumeCount), volumeCount)
}
{
@ -71,13 +71,13 @@ func TestHandlingVolumeServerHeartbeat(t *testing.T) {
}
topo.SyncDataNodeRegistration(volumeMessages, dn)
assert(t, "activeVolumeCount1", topo.activeVolumeCount, volumeCount)
assert(t, "volumeCount", topo.volumeCount, volumeCount)
assert(t, "activeVolumeCount1", int(topo.activeVolumeCount), volumeCount)
assert(t, "volumeCount", int(topo.volumeCount), volumeCount)
}
topo.UnRegisterDataNode(dn)
assert(t, "activeVolumeCount2", topo.activeVolumeCount, 0)
assert(t, "activeVolumeCount2", int(topo.activeVolumeCount), 0)
}