Fixing a test issue

This commit is contained in:
Praburaj 2015-02-16 15:31:56 -08:00
parent 518887beda
commit fc933c83c2
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ namespace E2ETests
if (response.StatusCode != HttpStatusCode.OK)
{
_logger.WriteError(response.Content.ReadAsStringAsync().Result);
throw new Exception(string.Format("Received the above response with status code : {statusCode}", response.StatusCode.ToString()));
throw new Exception(string.Format("Received the above response with status code : {0}", response.StatusCode));
}
}
}