Check for protobuf mimetype in apiserver

pull/6/head
Clayton Coleman 2016-04-16 17:11:43 -04:00
parent 86fb71aba7
commit 58afaaafb1
1 changed files with 4 additions and 4 deletions

View File

@ -1233,11 +1233,11 @@ func TestMetadata(t *testing.T) {
matches[s] = i + 1
}
}
if matches["text/plain,application/json,application/yaml"] == 0 ||
matches["application/json,application/yaml"] == 0 ||
matches["application/json"] == 0 ||
if matches["text/plain,application/json,application/yaml,application/vnd.kubernetes.protobuf"] == 0 ||
matches["application/json,application/yaml,application/vnd.kubernetes.protobuf"] == 0 ||
matches["application/json,application/vnd.kubernetes.protobuf"] == 0 ||
matches["*/*"] == 0 ||
len(matches) != 4 {
len(matches) != 5 {
t.Errorf("unexpected mime types: %v", matches)
}
}