starts fixing up all the tests

This commit is contained in:
Shannon
2015-02-23 00:02:12 +01:00
parent 3e18c93cf5
commit c76be66028
21 changed files with 125 additions and 79 deletions

View File

@@ -5,6 +5,7 @@ using System.Linq;
using Umbraco.Core;
using Umbraco.Core.Configuration;
using Umbraco.Core.Logging;
using Umbraco.Core.Persistence.Migrations;
using Umbraco.Web.Install.Models;
namespace Umbraco.Web.Install.InstallSteps
@@ -30,7 +31,7 @@ namespace Umbraco.Web.Install.InstallSteps
{
LogHelper.Info<DatabaseUpgradeStep>("Running 'Upgrade' service");
var result = _applicationContext.DatabaseContext.UpgradeSchemaAndData();
var result = _applicationContext.DatabaseContext.UpgradeSchemaAndData(MigrationResolver.Current);
if (result.Success == false)
{