From fc933c83c2a48fdcbd277110e67cb0fc59fab8e0 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Mon, 16 Feb 2015 15:31:56 -0800 Subject: [PATCH] Fixing a test issue --- test/E2ETests/Implementation/Scenarios.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Implementation/Scenarios.cs b/test/E2ETests/Implementation/Scenarios.cs index ac1fa8abd3..2ee71408e0 100644 --- a/test/E2ETests/Implementation/Scenarios.cs +++ b/test/E2ETests/Implementation/Scenarios.cs @@ -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)); } } }