test: Moves a variable closer to where it's used.

This commit is contained in:
James Phillips 2017-05-04 15:05:23 -07:00 committed by Frank Schroeder
parent 2e512d6e6d
commit c77663fe65
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 2 additions and 1 deletions

View File

@ -476,9 +476,10 @@ func TestOperator_ServerHealth(t *testing.T) {
}
func TestOperator_ServerHealth_Unhealthy(t *testing.T) {
threshold := time.Duration(-1)
cb := func(c *Config) {
c.RaftProtocol = 3
threshold := time.Duration(-1)
c.Autopilot.LastContactThreshold = &threshold
}
httpTestWithConfig(t, func(srv *HTTPServer) {