From bf51be950f1cb49e09d99b12cec16970dd370877 Mon Sep 17 00:00:00 2001 From: Stephan Date: Wed, 20 Apr 2016 14:09:40 +0200 Subject: [PATCH] Fixing tests - CoreBootManager --- .../Persistence/Migrations/MigrationStartupHandlerTests.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Umbraco.Tests/Persistence/Migrations/MigrationStartupHandlerTests.cs b/src/Umbraco.Tests/Persistence/Migrations/MigrationStartupHandlerTests.cs index 3ebd40577b..0b39985028 100644 --- a/src/Umbraco.Tests/Persistence/Migrations/MigrationStartupHandlerTests.cs +++ b/src/Umbraco.Tests/Persistence/Migrations/MigrationStartupHandlerTests.cs @@ -113,6 +113,12 @@ namespace Umbraco.Tests.Persistence.Migrations private readonly string _prodName; private readonly Args _changed; + // need that one else it breaks IoC + public TestMigrationHandler() + { + _changed = new Args(); + } + public TestMigrationHandler(Args changed) { _changed = changed;