Merge pull request #69866 from xichengliudui/fix181016

Remove duplicate words

Kubernetes-commit: 1af393d58ef982056e479ae0a5b33f810d46a375
This commit is contained in:
Kubernetes Publisher 2018-10-22 15:35:36 -07:00
commit 99a76d773c
1 changed files with 1 additions and 1 deletions

View File

@ -817,7 +817,7 @@ func TestAuditIDHttpHeader(t *testing.T) {
t.Errorf("[%s] expected Audit-ID http header returned, but not returned", test.desc)
continue
}
// if get Audit-ID returned, it should be the same same with the requested one
// if get Audit-ID returned, it should be the same with the requested one
if test.requestHeader != "" && resp.Header.Get("Audit-ID") != test.requestHeader {
t.Errorf("[%s] returned audit http header is not the same with the requested http header, expected: %s, get %s", test.desc, test.requestHeader, resp.Header.Get("Audit-ID"))
}