From ce178243fc0d38a5d396e3e8c068f69e1df70c9d Mon Sep 17 00:00:00 2001 From: Praburaj Date: Fri, 9 Jan 2015 13:54:30 -0800 Subject: [PATCH] Fixing a test regression Deleted a boolean flag passed to ignore login/register links in the home page. --- test/E2ETests/NtlmAuthentationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/NtlmAuthentationTest.cs b/test/E2ETests/NtlmAuthentationTest.cs index a3e8771004..32ab970420 100644 --- a/test/E2ETests/NtlmAuthentationTest.cs +++ b/test/E2ETests/NtlmAuthentationTest.cs @@ -75,7 +75,7 @@ namespace E2ETests } } - VerifyHomePage(response, responseContent); + VerifyHomePage(response, responseContent, true); //Check if the user name appears in the page Assert.Contains(string.Format("{0}\\{1}", Environment.UserDomainName, Environment.UserName), responseContent, StringComparison.OrdinalIgnoreCase);