From da344966453c0d2e4b9307f608fc45b9b598315d Mon Sep 17 00:00:00 2001 From: James Phillips Date: Thu, 1 Sep 2016 21:52:29 -0700 Subject: [PATCH] Fixes a typo in a test error message. --- command/agent/dns_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/dns_test.go b/command/agent/dns_test.go index ab0f7e13e3..2c40112357 100644 --- a/command/agent/dns_test.go +++ b/command/agent/dns_test.go @@ -1436,7 +1436,7 @@ func TestDNS_RecursorTimeout(t *testing.T) { } if duration < serverClientTimeout { - t.Fatalf("Expected the call to return after at least %f seconds but lastest only %f", serverClientTimeout.Seconds(), duration.Seconds()) + t.Fatalf("Expected the call to return after at least %f seconds but lasted only %f", serverClientTimeout.Seconds(), duration.Seconds()) } }