| 306 | vector<string> bodies; |
| 307 | |
| 308 | foreach (const MockAuthenticator& authenticator, authenticators) { |
| 309 | headers.push_back(authenticator.scheme() + " realm=\"" + REALM + "\""); |
| 310 | bodies.push_back( |
| 311 | "\"" + authenticator.scheme() + "\" authenticator returned:\n" + |
| 312 | authenticator.scheme() + " unauthorized"); |
| 313 | } |
| 314 | |
| 315 | result.unauthorized = Unauthorized( |
| 316 | {strings::join(",", headers)}, |