Fix tests

This commit is contained in:
Stephan
2015-03-06 14:24:08 +01:00
parent 183e7e5910
commit 5baaed19d0
3 changed files with 15 additions and 7 deletions

View File

@@ -126,8 +126,8 @@ namespace Umbraco.Core.Sync
public static string GetServerHash(string machineName, string appDomainAppId)
{
var hasher = new HashCodeCombiner();
hasher.AddCaseInsensitiveString(NetworkHelper.MachineName);
hasher.AddCaseInsensitiveString(System.Web.HttpRuntime.AppDomainAppId);
hasher.AddCaseInsensitiveString(appDomainAppId);
hasher.AddCaseInsensitiveString(machineName);
return hasher.GetCombinedHashCode();
}