fix wrong print format

Signed-off-by: Reficul <xuzhenglun@gmail.com>
This commit is contained in:
Reficul 2017-02-21 10:26:06 +08:00
parent 75843d36aa
commit 9b1ceecd8a
No known key found for this signature in database
GPG key ID: AE34ED8AE85952B1
2 changed files with 2 additions and 2 deletions

View file

@ -489,7 +489,7 @@ func TestArg(t *testing.T) {
} }
if *val != "bar" { if *val != "bar" {
t.Fatalf("%s argument should have default value 'bar', got %s", argName, val) t.Fatalf("%s argument should have default value 'bar', got %s", argName, *val)
} }
} }

View file

@ -492,7 +492,7 @@ func TestParseHealth(t *testing.T) {
t.Fatalf("--health-cmd: got %#v", health.Test) t.Fatalf("--health-cmd: got %#v", health.Test)
} }
if health.Timeout != 0 { if health.Timeout != 0 {
t.Fatalf("--health-cmd: timeout = %f", health.Timeout) t.Fatalf("--health-cmd: timeout = %s", health.Timeout)
} }
checkError("--no-healthcheck conflicts with --health-* options", checkError("--no-healthcheck conflicts with --health-* options",