Fixes a typo in a test error message.

This commit is contained in:
James Phillips 2016-09-01 21:52:29 -07:00
parent ca71911eed
commit 3f3bb444fa
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
1 changed files with 1 additions and 1 deletions

View File

@ -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())
}
}