Fixing tests - CoreBootManager

This commit is contained in:
Stephan
2016-04-20 14:09:40 +02:00
parent 7e8b4d13a7
commit bf51be950f

View File

@@ -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;