Reduce the error level from Fatal when unit testing

pull/1880/head
Sean Chittenden 9 years ago
parent 92c2e8e668
commit e327630523

@ -187,7 +187,7 @@ func TestServerManagerInternal_refreshServerRebalanceTimer(t *testing.T) {
d := sm.refreshServerRebalanceTimer(timer)
if d < s.minRebalance {
t.Fatalf("duration too short for cluster of size %d and %d servers (%s < %s)", s.numNodes, s.numServers, d, s.minRebalance)
t.Errorf("duration too short for cluster of size %d and %d servers (%s < %s)", s.numNodes, s.numServers, d, s.minRebalance)
}
}
}

Loading…
Cancel
Save