Browse Source

Fixed unit tests

pull/970/head
Savorboard 6 years ago
parent
commit
6919decef3
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      src/Services/Catalog/Catalog.FunctionalTests/CatalogScenarioBase.cs

+ 1
- 3
src/Services/Catalog/Catalog.FunctionalTests/CatalogScenarioBase.cs View File

@ -1,6 +1,5 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;
using Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF;
using Microsoft.eShopOnContainers.Services.Catalog.API;
using Microsoft.eShopOnContainers.Services.Catalog.API.Infrastructure;
using Microsoft.Extensions.Configuration;
@ -39,8 +38,7 @@ namespace Catalog.FunctionalTests
new CatalogContextSeed()
.SeedAsync(context, env, settings, logger)
.Wait();
})
.MigrateDbContext<IntegrationEventLogContext>((_, __) => { });
});
return testServer;
}


Loading…
Cancel
Save